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.
33 lines
810 B
33 lines
810 B
#pragma once
|
|
|
|
#ifndef _GNU_SOURCE
|
|
#define _GNU_SOURCE
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
#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(const pthread_t thread_id, 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();
|
|
};
|