Searched refs:intpending (Results 1 – 2 of 2) sorted by relevance
67 extern volatile sig_atomic_t intpending;70 #define INTON { if (--suppressint == 0 && intpending) onint(); }72 #define SETINTON(s) do { suppressint = (s); if (suppressint == 0 && intpending) onint(); } while (0)73 #define FORCEINTON {suppressint = 0; if (intpending) onint();}74 #define SET_PENDING_INT intpending = 175 #define CLEAR_PENDING_INT intpending = 076 #define int_pending() intpending
59 volatile sig_atomic_t intpending; variable100 intpending = 0; in onint()