|
|
|
@ -30,7 +30,16 @@ enum ThreadPriority : u32 { |
|
|
|
}; |
|
|
|
|
|
|
|
enum ThreadProcessorId : s32 { |
|
|
|
THREADPROCESSORID_IDEAL = -2, ///< Run thread on the ideal core specified by the process. |
|
|
|
/// Indicates that no particular processor core is preferred. |
|
|
|
THREADPROCESSORID_DONT_CARE = -1, |
|
|
|
|
|
|
|
/// Run thread on the ideal core specified by the process. |
|
|
|
THREADPROCESSORID_IDEAL = -2, |
|
|
|
|
|
|
|
/// Indicates that the preferred processor ID shouldn't be updated in |
|
|
|
/// a core mask setting operation. |
|
|
|
THREADPROCESSORID_DONT_UPDATE = -3, |
|
|
|
|
|
|
|
THREADPROCESSORID_0 = 0, ///< Run thread on core 0 |
|
|
|
THREADPROCESSORID_1 = 1, ///< Run thread on core 1 |
|
|
|
THREADPROCESSORID_2 = 2, ///< Run thread on core 2 |
|
|
|
|