mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
#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;
 | 
						|
}
 |