Blocked signals on the DebugServer thread and some tidying

This commit is contained in:
Nav
2022-07-28 22:45:21 +01:00
parent 7a39327c95
commit 1f4788b039
4 changed files with 4 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ namespace Bloom
/**
* Disables signal interrupts on current thread.
*/
void blockAllSignalsOnCurrentThread() {
void blockAllSignals() {
sigset_t set = {};
sigfillset(&set);
sigprocmask(SIG_SETMASK, &set, NULL);