1
0
This repository has been archived on 2024-07-22. You can view files and clone it. You cannot open issues, pull requests or push a commit.
Files
2024-07-22 01:58:46 -03:00

17 lines
305 B
C
Executable File

#ifndef _CPUMAP_H
#define _CPUMAP_H
#ifdef CONFIG_SMP
void cpu_map_rebuild(void);
int map_to_cpu(unsigned int index);
#define cpu_map_init() cpu_map_rebuild()
#else
#define cpu_map_init() do {} while (0)
static inline int map_to_cpu(unsigned int index)
{
return raw_smp_processor_id();
}
#endif
#endif