From 9495b7a7a61904258f194ec4648e98a1211310c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20M=C3=BCyessero=C4=9Flu?= Date: Mon, 22 Apr 2019 15:31:47 +0300 Subject: [PATCH] Minor fix on Scheduler Suspension subtitle Closes https://github.com/espressif/esp-idf/pull/3343 --- docs/en/api-guides/freertos-smp.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/api-guides/freertos-smp.rst b/docs/en/api-guides/freertos-smp.rst index 51752170b5..ac3a49ec84 100644 --- a/docs/en/api-guides/freertos-smp.rst +++ b/docs/en/api-guides/freertos-smp.rst @@ -291,7 +291,7 @@ resumed. Scheduler suspension in vanilla FreeRTOS is a common protection method against simultaneous access of data shared between tasks, whilst still allowing ISRs to be serviced. -In ESP-IDF FreeRTOS, :cpp:func:`xTaskResumeAll` will only prevent calls of +In ESP-IDF FreeRTOS, :cpp:func:`xTaskSuspendAll` will only prevent calls of ``vTaskSwitchContext()`` from switching contexts on the core that called for the suspension. Hence if **PRO_CPU** calls :cpp:func:`vTaskSuspendAll`, **APP_CPU** will still be able to switch contexts. If data is shared between tasks that are