Lines Matching full:using
9 …uivalent FreeRTOS features. The runtime memory or performance overhead of using the pthreads API i…
11 …pecific header, ``esp_pthread.h``, provides additional non-POSIX APIs for using some ESP-IDF featu…
13 …read``, ``std::mutex``, ``std::condition_variable``, etc. are implemented using pthreads (via GCC …
18 Unlike many operating systems using POSIX Threads, ESP-IDF is a real-time operating system with a r…
63 .. note:: This function can be called from tasks created using either pthread or FreeRTOS APIs
82 .. note:: These functions can be called from tasks created using either pthread or FreeRTOS APIs
99 .. note:: These functions can be called from tasks created using either pthread or FreeRTOS APIs
114 .. note:: These functions can be called from tasks created using either pthread or FreeRTOS APIs. N…
120 …, calls ``pthread_exit()``, or if the underlying task is deleted directly using the FreeRTOS funct…
124 .. note:: These functions can be called from tasks created using either pthread or FreeRTOS APIs
156 - :example:`system/pthread` demonstrates using the pthreads API to create threads
157 - :example:`cxx/pthread` demonstrates using C++ Standard Library functions with threads