mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
implement sys_cpuset_getaffinity, sys_cpuset_setaffinity, sys_rtprio_thread fix hang on sys_select simplify sys_thr_*_ucontext
10 lines
114 B
C++
10 lines
114 B
C++
#pragma once
|
|
|
|
#include "orbis-config.hpp"
|
|
|
|
namespace orbis {
|
|
struct cpuset {
|
|
uint bits;
|
|
};
|
|
} // namespace orbis
|