Home | History | Annotate | Download | only in plat-irix6

Lines Matching refs:stat

12 def WIFEXITED(stat): return ((_W_INT(stat)&0377)==0)
14 def WEXITSTATUS(stat): return ((_W_INT(stat)>>8)&0377)
16 def WTERMSIG(stat): return (_W_INT(stat)&0177)
18 def WSTOPSIG(stat): return ((_W_INT(stat)>>8)&0377)
30 def WWORD(stat): return (_W_INT(stat)&0177777)
32 def WIFCONTINUED(stat): return (WWORD(stat)==WCONTFLG)
34 def WCOREDUMP(stat): return (_W_INT(stat) & WCOREFLAG)