mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-05 06:22:45 +01:00
52f58e64ef
During normal operation, a thread waiting on an WaitObject and the object hold mutual references to each other for the duration of the wait. If a process is forcefully terminated (The CTR kernel has a SVC to do this, TerminateProcess, though no equivalent exists for threads.) its threads would also be stopped and destroyed, leaving dangling pointers in the WaitObjects. The solution is to simply have the Thread remove itself from WaitObjects when it is stopped. The vector of Threads in WaitObject has also been changed to hold SharedPtrs, just in case. (Better to have a reference cycle than a crash.) |
||
---|---|---|
.. | ||
kernel | ||
service | ||
config_mem.cpp | ||
config_mem.h | ||
coprocessor.cpp | ||
function_wrappers.h | ||
hle.cpp | ||
hle.h | ||
result.h | ||
shared_page.cpp | ||
shared_page.h | ||
svc.cpp | ||
svc.h |