rpcsx/orbis-kernel/include/orbis/thread/cpuset.hpp

13 lines
229 B
C++
Raw Normal View History

2023-07-03 13:10:16 +02:00
#pragma once
#include "orbis-config.hpp"
namespace orbis {
static constexpr auto NCPUBITS = sizeof(slong) * 8;
static constexpr auto NCPUWORDS = 128 / NCPUBITS;
struct cpuset {
slong bits[NCPUWORDS];
};
} // namespace orbis