mirror of
https://github.com/xenia-project/xenia.git
synced 2024-11-23 11:39:45 +00:00
634f87f63b
Add thread local bool for alertable state. Use real-time event interrupt to run callback. Fix sleep duration from miliseconds (microseconds / 1000) to seconds in sleep command. Add note for future implementation. Ignore real-time event 37 in .gdbinit which is used to signal callback. Test AlertableSleep Test Thread QueueUserCallback. TODO: Test alerted wait result when using IO functions.
11 lines
323 B
Plaintext
11 lines
323 B
Plaintext
# Ignore HighResolutionTimer custom event
|
|
handle SIG34 nostop noprint
|
|
# Ignore PosixTimer custom event
|
|
handle SIG35 nostop noprint
|
|
# Ignore PosixThread exit event
|
|
handle SIG32 nostop noprint
|
|
# Ignore PosixThread suspend event
|
|
handle SIG36 nostop noprint
|
|
# Ignore PosixThread user callback event
|
|
handle SIG37 nostop noprint
|