![]() |
WPILibC++ 2025.3.2
|
Typedefs | |
| typedef const void * | NativeThreadHandle |
Functions | |
| int32_t | HAL_GetThreadPriority (NativeThreadHandle handle, HAL_Bool *isRealTime, int32_t *status) |
| Gets the thread priority for the specified thread. | |
| int32_t | HAL_GetCurrentThreadPriority (HAL_Bool *isRealTime, int32_t *status) |
| Gets the thread priority for the current thread. | |
| HAL_Bool | HAL_SetThreadPriority (NativeThreadHandle handle, HAL_Bool realTime, int32_t priority, int32_t *status) |
| Sets the thread priority for the specified thread. | |
| HAL_Bool | HAL_SetCurrentThreadPriority (HAL_Bool realTime, int32_t priority, int32_t *status) |
| Sets the thread priority for the current thread. | |
| typedef const void* NativeThreadHandle |
| int32_t HAL_GetCurrentThreadPriority | ( | HAL_Bool * | isRealTime, |
| int32_t * | status ) |
Gets the thread priority for the current thread.
| [out] | isRealTime | Set to true if thread is real-time, otherwise false. |
| [out] | status | Error status variable. 0 on success. |
| int32_t HAL_GetThreadPriority | ( | NativeThreadHandle | handle, |
| HAL_Bool * | isRealTime, | ||
| int32_t * | status ) |
Gets the thread priority for the specified thread.
| [in] | handle | Native handle pointer to the thread to get the priority for. |
| [out] | isRealTime | Set to true if thread is real-time, otherwise false. |
| [out] | status | Error status variable. 0 on success. |
Sets the thread priority for the current thread.
| [in] | realTime | Set to true to set a real-time priority, false for standard priority. |
| [in] | priority | Priority to set the thread to. For real-time, this is 1-99 with 99 being highest. For non-real-time, this is forced to 0. See "man 7 sched" for more details. |
| [out] | status | Error status variable. 0 on success. |
| HAL_Bool HAL_SetThreadPriority | ( | NativeThreadHandle | handle, |
| HAL_Bool | realTime, | ||
| int32_t | priority, | ||
| int32_t * | status ) |
Sets the thread priority for the specified thread.
| [in] | handle | Reference to the thread to set the priority of. |
| [in] | realTime | Set to true to set a real-time priority, false for standard priority. |
| [in] | priority | Priority to set the thread to. For real-time, this is 1-99 with 99 being highest. For non-real-time, this is forced to 0. See "man 7 sched" for more details. |
| [out] | status | Error status variable. 0 on success. |