Home
last modified time | relevance | path

Searched defs:WSTOPSIG (Results 1 – 4 of 4) sorted by relevance

/external/bison/lib/
Dsys_wait.in.h75 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro
/external/bison/linux-lib/sys/
Dwait.h377 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro
405 # define WSTOPSIG(x) 0 macro
/external/bison/darwin-lib/sys/
Dwait.h377 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro
405 # define WSTOPSIG(x) 0 macro
/external/python/cpython2/Lib/plat-irix6/
DWAIT.py18 def WSTOPSIG(stat): return ((_W_INT(stat)>>8)&0377) function