| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | core: hle: Remove global HLE lock. | 2021-12-17 | 1 | -18/+0 | |
| | | | | | | - This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex. | ||||
| * | Use recursive_mutex instead of mutex to fix #2902 | 2017-08-29 | 1 | -1/+1 | |
| | | |||||
| * | Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state ↵ | 2017-08-22 | 1 | -0/+18 | |
| between the cpu thread and any other possible threads that might touch the kernel (network thread, etc). This mutex is acquired in SVC::CallSVC, ie, as soon as the guest application enters the HLE kernel, and should be acquired by the aforementioned threads before modifying kernel structures. | |||||