mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	Closes https://github.com/espressif/esp-idf/issues/6119 Closes https://github.com/espressif/esp-idf/issues/7798
		
			
				
	
	
		
			28 lines
		
	
	
		
			478 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			478 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#include <unistd.h>
 | 
						|
#include <errno.h>
 | 
						|
#include "sdkconfig.h"
 | 
						|
 | 
						|
#ifdef CONFIG_FREERTOS_UNICORE
 | 
						|
#define CPU_NUM 1
 | 
						|
#else
 | 
						|
#define CPU_NUM CONFIG_SOC_CPU_CORES_NUM
 | 
						|
#endif
 | 
						|
 | 
						|
long sysconf(int arg)
 | 
						|
{
 | 
						|
    switch (arg) {
 | 
						|
    case _SC_NPROCESSORS_CONF:
 | 
						|
    case _SC_NPROCESSORS_ONLN:
 | 
						|
        return CPU_NUM;
 | 
						|
    default:
 | 
						|
        errno = EINVAL;
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
}
 |