mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
synced 2026-01-11 23:44:48 +00:00
Similarly like svcGetProcessList, this retrieves the list of threads from the current process. In the kernel itself, a process instance maintains a list of threads, which are used within this function. Threads are registered to a process' thread list at thread initialization, and unregistered from the list upon thread destruction (if said thread has a non-null owning process). We assert on the debug event case, as we currently don't implement kernel debug objects.