Home
last modified time | relevance | path

Searched refs:WIFSTOPPED (Results 1 – 22 of 22) sorted by relevance

/titanic_50/usr/src/cmd/ssh/include/
H A Dbsd-waitpid.h39 #undef WIFSTOPPED
45 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) macro
46 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
/titanic_50/usr/src/lib/libast/common/include/
H A Dwait.h62 #undef WIFSTOPPED
83 #ifndef WIFSTOPPED
84 #define WIFSTOPPED(x) (((x)&((1<<EXIT_BITS)-1))==((1<<(EXIT_BITS-1))-1)) macro
/titanic_50/usr/src/lib/libast/amd64/include/ast/
H A Dwait.h71 #undef WIFSTOPPED
92 #ifndef WIFSTOPPED
93 #define WIFSTOPPED(x) (((x)&((1<<EXIT_BITS)-1))==((1<<(EXIT_BITS-1))-1)) macro
/titanic_50/usr/src/lib/libast/sparc/include/ast/
H A Dwait.h71 #undef WIFSTOPPED
92 #ifndef WIFSTOPPED
93 #define WIFSTOPPED(x) (((x)&((1<<EXIT_BITS)-1))==((1<<(EXIT_BITS-1))-1)) macro
/titanic_50/usr/src/lib/libast/sparcv9/include/ast/
H A Dwait.h71 #undef WIFSTOPPED
92 #ifndef WIFSTOPPED
93 #define WIFSTOPPED(x) (((x)&((1<<EXIT_BITS)-1))==((1<<(EXIT_BITS-1))-1)) macro
/titanic_50/usr/src/lib/libast/i386/include/ast/
H A Dwait.h71 #undef WIFSTOPPED
92 #ifndef WIFSTOPPED
93 #define WIFSTOPPED(x) (((x)&((1<<EXIT_BITS)-1))==((1<<(EXIT_BITS-1))-1)) macro
/titanic_50/usr/src/lib/libast/common/features/
H A Dwait7 int ifstopped = WIFSTOPPED(0);
/titanic_50/usr/src/cmd/csh/
H A Dwait.h96 #define WIFSTOPPED(x) ((x).w_stopval == WSTOPPED) macro
H A Dsh.proc.c85 if (WIFSTOPPED(w)) { in pchild()
/titanic_50/usr/src/uts/common/sys/
H A Dwait.h89 #define WIFSTOPPED(stat) ((int)((stat)&0xFF) == 0177 && \ macro
/titanic_50/usr/src/lib/libbc/inc/include/sys/
H A Dwait.h82 #define WIFSTOPPED(x) (((union __wait*)&(x))->__w_stopval == _WSTOPPED) macro
/titanic_50/usr/src/ucbhead/sys/
H A Dwait.h139 #define WIFSTOPPED(stat) (WLOBYTE(stat) == WSTOPFLG&&WHIBYTE(stat) != 0) macro
/titanic_50/usr/src/cmd/sendmail/include/sm/
H A Dconf.h711 # undef WIFSTOPPED
2324 # undef WIFSTOPPED
2882 # ifndef WIFSTOPPED
2883 # define WIFSTOPPED(st) (((st) & 0100) == 0) macro
/titanic_50/usr/src/cmd/cmd-inet/lib/nwamd/
H A Dutil.c233 if (WIFSIGNALED(status) || WIFSTOPPED(status)) { in nwamd_start_childv()
/titanic_50/usr/src/cmd/rexd/
H A Drpc.rexd.c689 if (WIFSTOPPED(status)) { in CatchChild()
/titanic_50/usr/src/lib/libshell/common/sh/
H A Djobs.c316 if(jp && WIFSTOPPED(wstat)) in job_reap()
325 if(WIFSTOPPED(wstat)) in job_reap()
/titanic_50/usr/src/cmd/sh/
H A Djobs.c238 } else if (WIFSTOPPED(stat)) { in statjob()
/titanic_50/usr/src/cmd/su/
H A Dsu.c949 } else if (WIFSTOPPED(status)) { in audit_logout()
/titanic_50/usr/src/cmd/sendmail/src/
H A Dmain.c2274 if (WIFSTOPPED(status))
2468 if (WIFSTOPPED(status))
H A Dutil.c2634 else if (type == PROC_QUEUE_CHILD && !WIFSTOPPED(st) &&
H A Ddeliver.c3924 (WIFSTOPPED(st) ? " (stopped)" : ""));
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dmain.c2185 if (WIFSIGNALED(status) || WIFSTOPPED(status)) {