mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-05 11:30:57 +02:00
esp_pthread.h is missing the necessary extern "C"{ ... } wrapper to be compatible with C++. The result is link errors when you call its functions from C++ code, because the compiler generates mangled names. Closes https://github.com/espressif/esp-idf/issues/2121 Closes https://github.com/espressif/esp-idf/issues/2172