2018-05-29 09:25:24 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
#include "esp_log.h"
|
|
|
|
|
|
|
|
const static char *TAG = "esp32_asio_pthread";
|
|
|
|
|
|
|
|
int pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id)
|
|
|
|
{
|
|
|
|
ESP_LOGW(TAG, "%s: not yet supported!", __FUNCTION__);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-03-08 07:07:00 +00:00
|
|
|
|
|
|
|
int pthread_setcancelstate(int state, int *oldstate)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2019-04-15 03:45:08 +00:00
|
|
|
|
|
|
|
void newlib_include_pthread_impl()
|
|
|
|
{
|
|
|
|
// Linker hook, exists for no other purpose
|
|
|
|
}
|