HomeSort by: relevance | last modified time | path
    Searched defs:WIFCONTINUED (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/sys/
wait.h 61 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && !WIFCONTINUED(x))
62 #define WIFCONTINUED(x) (_W_INT(x) == _WCONTINUED)
64 #define WIFSIGNALED(x) (!WIFSTOPPED(x) && !WIFCONTINUED(x) && !WIFEXITED(x))
  /src/bin/sh/
jobs.c 90 #ifndef WIFCONTINUED
91 #define WIFCONTINUED(x) (0) /* ditto */
1618 if (WIFCONTINUED(status)) {

Completed in 219 milliseconds