Function ctru_sys::svcGetThreadList
source · pub unsafe extern "C" fn svcGetThreadList(
threadCount: *mut s32,
threadIds: *mut u32_,
threadIdMaxCount: s32,
process: Handle
) -> Result
Expand description
Gets a list of the threads of a process.
§Arguments
threadCount
(direction out) - Pointer to output the thread count to.threadIds
(direction out) - Pointer to output the thread IDs to.threadIdMaxCount
- Maximum number of thread IDs.process
- Process handle to list the threads of.