mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'doc/jthread_limitation' into 'master'
doc: Note down C++ std::jthread limitation Closes IDF-6769 and IDFGH-9280 See merge request espressif/esp-idf!23570
This commit is contained in:
commit
3010fd3aa9
@ -18,8 +18,6 @@ esp-idf-cxx Component
|
||||
|
||||
`esp-idf-cxx <https://github.com/espressif/esp-idf-cxx>`_ component provides higher-level C++ APIs for some of the ESP-IDF features. This component is available from the `IDF Component Registry <https://components.espressif.com/components/espressif/esp-idf-cxx>`_.
|
||||
|
||||
.. _cplusplus_multithreading:
|
||||
|
||||
C++ language standard
|
||||
---------------------
|
||||
|
||||
@ -34,6 +32,8 @@ To compile the source code of a certain component using a different language sta
|
||||
|
||||
Use ``PUBLIC`` instead of ``PRIVATE`` if the public header files of the component also need to be compiled with the same language standard.
|
||||
|
||||
.. _cplusplus_multithreading:
|
||||
|
||||
Multithreading
|
||||
--------------
|
||||
|
||||
@ -41,6 +41,10 @@ C++ threads, mutexes, and condition variables are supported. C++ threads are bui
|
||||
|
||||
See :example:`cxx/pthread` for an example of creating threads in C++.
|
||||
|
||||
.. note::
|
||||
|
||||
The destructor of `std::jthread <https://en.cppreference.com/w/cpp/thread/jthread>`_ can only safely be called from a task that has been created by :ref:`the IDF implementation of pthread_create() <posix_thread_api>` or by the `C++ threading library API <https://en.cppreference.com/w/cpp/thread>`_.
|
||||
|
||||
.. _cplusplus_exceptions:
|
||||
|
||||
Exception handling
|
||||
|
@ -30,6 +30,8 @@ The following standard APIs are implemented in ESP-IDF.
|
||||
|
||||
Refer to standard POSIX Threads documentation, or pthread.h, for details about the standard arguments and behaviour of each function. Differences or limitations compared to the standard APIs are noted below.
|
||||
|
||||
.. _posix_thread_api:
|
||||
|
||||
Thread APIs
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user