pthread.c 320 B

123456789101112131415
  1. #include <pthread.h>
  2. #include "esp_log.h"
  3. const static char *TAG = "esp32_asio_pthread";
  4. int pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id)
  5. {
  6. ESP_LOGW(TAG, "%s: not yet supported!", __FUNCTION__);
  7. return 0;
  8. }
  9. int pthread_setcancelstate(int state, int *oldstate)
  10. {
  11. return 0;
  12. }