pub unsafe extern "C" fn svcGetThreadList(
threadCount: *mut s32,
threadIds: *mut u32_,
threadIdMaxCount: s32,
process: Handle,
) -> ResultExpand 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.