Home
last modified time | relevance | path

Searched refs:intpending (Results 1 – 2 of 2) sorted by relevance

/freebsd/bin/sh/
H A Derror.h67 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 = 1
75 #define CLEAR_PENDING_INT intpending = 0
76 #define int_pending() intpending
H A Derror.c59 volatile sig_atomic_t intpending; variable
100 intpending = 0; in onint()