mirror of
https://github.com/espressif/esp-idf
synced 2025-03-12 10:39:11 -04: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