📄 scout_synch.c
字号:
/* Synchronization routines to use while running in UNIX */#include <signal.h>static sigset_t blockmask;static sigset_t oldmask;static int inited = 0;static int count = 0;longsynchEnableInterrupts (void){ if (!inited) { return; /* No need to enable if nothing has been disabled yet */ } /* reset the sigmask to what it was when we were called */ if (count == 0) return 0; if (--count == 0) sigprocmask(SIG_SETMASK, &oldmask, 0); return 0;}longsynchDisableInterrupts (void){ if (!inited) { sigfillset(&blockmask); inited = 1; } /* Block out all signals */ if (count++ == 0) sigprocmask(SIG_BLOCK, &blockmask, &oldmask); return 0;}longsynchRestoreInterrupts (void){ synchEnableInterrupts(); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -