mirror of https://github.com/trapexit/mergerfs.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							785 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							32 lines
						
					
					
						
							785 B
						
					
					
				| #pragma once | |
|  | |
| #include <pthread.h> | |
| #ifdef __FreeBSD__ | |
| #include <pthread_np.h> | |
| #endif | |
| #include <sched.h> | |
|  | |
| #include <set> | |
| #include <unordered_map> | |
| #include <vector> | |
|  | |
| 
 | |
| class CPU | |
| { | |
| public: | |
|   typedef std::vector<pthread_t> ThreadIdVec; | |
|   typedef std::vector<int> CPUVec; | |
|   typedef std::unordered_map<int,int> CPU2CoreMap; | |
|   typedef std::unordered_map<int,std::set<int>> Core2CPUsMap; | |
| 
 | |
| public: | |
|   static int count(); | |
|   static int getaffinity(cpu_set_t *cpuset); | |
|   static int setaffinity(const pthread_t thread_id, cpu_set_t *cpuset); | |
|   static int setaffinity(const pthread_t thread_id, const int cpu); | |
|   static int setaffinity(const pthread_t thread_id, const std::set<int> cpus); | |
| 
 | |
|   static CPU::CPUVec cpus(); | |
|   static CPU::CPU2CoreMap cpu2core(); | |
|   static CPU::Core2CPUsMap core2cpus(); | |
| };
 |