rpcsx/orbis-kernel/include/orbis/thread/cpuset.hpp
2023-07-03 14:12:41 +03:00

13 lines
229 B
C++

#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