summary refs log tree commit diff stats
path: root/results/scraper/fex/12
blob: b22e1a84b4f36f982d8bd8294e33d500e81300bd (plain) (blame)
1
2
3
4
5
6
7
Syscall emulation has incorrect global mutex
There is a scoped mutex at the top of the syscall handling function.
This is incorrect and causes the application to stall once threading kicks in.
Should be removed and only have a mutex on things that actually need it.
Can be done alongside syscall cleanup.

I think skmp wanted to have a go at this?