Merge branch 'doc/c3_system_api' into 'master'

docs: update system api reference chapters for C3

Closes IDF-2327 and IDF-2320

See merge request espressif/esp-idf!12730
This commit is contained in:
Krzysztof Budzynski
2021-03-24 10:28:19 +00:00
18 changed files with 131 additions and 105 deletions
+3 -2
View File
@@ -5,6 +5,7 @@ Overview
--------
This module offers Espressif specific extensions to the pthread library that can be used to influence the behaviour of pthreads. Currently the following configuration can be tuned:
* Stack size of the pthreads
* Priority of the created pthreads
* Inheriting this configuration across threads
@@ -35,9 +36,9 @@ Example to tune the stack size of the pthread:
The API can also be used for inheriting the settings across threads. For example:
.. code-block:: c
void * my_thread2(void * p)
{
{
/* This thread will inherit the stack size of 4K */
printf("In my_thread2\n");