mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
		
			
				
	
	
		
			39 lines
		
	
	
		
			962 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			962 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!", __func__);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
int pthread_setcancelstate(int state, int *oldstate)
 | 
						|
{
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
//  This functions (pthread_sigmask(), sigfillset) are called from ASIO::signal_blocker to temporarily silence signals
 | 
						|
//  Since signals are not yet supported in ESP pthread these functions serve as no-ops
 | 
						|
//
 | 
						|
int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict oset)
 | 
						|
{
 | 
						|
    ESP_LOGD(TAG, "%s: Signals not supported in ESP pthread", __func__);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
int sigfillset(sigset_t *what)
 | 
						|
{
 | 
						|
    ESP_LOGD(TAG, "%s: Signals not supported in ESP pthread", __func__);
 | 
						|
    if (what != NULL) {
 | 
						|
        *what = ~0;
 | 
						|
    }
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
void newlib_include_pthread_impl(void)
 | 
						|
{
 | 
						|
    // Linker hook, exists for no other purpose
 | 
						|
}
 |