mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 15:15:15 +08:00
feat(gcc): update cross toolchain GCC to v8.x
This commit is contained in:
@ -78,6 +78,17 @@ static void esp_pthread_cfg_key_destructor(void *value)
|
||||
free(value);
|
||||
}
|
||||
|
||||
int pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id)
|
||||
{
|
||||
ESP_LOGW(TAG, "%s: not yet supported!", __func__);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pthread_setcancelstate(int state, int *oldstate)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
esp_err_t esp_pthread_init(void)
|
||||
{
|
||||
if (pthread_key_create(&s_pthread_cfg_key, esp_pthread_cfg_key_destructor) != 0) {
|
||||
|
Reference in New Issue
Block a user