Home
last modified time | relevance | path

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

/coreutils/src/
Dsplit.c581 int wstatus; in closeout() local
582 if (waitpid (pid, &wstatus, 0) < 0) in closeout()
584 else if (WIFSIGNALED (wstatus)) in closeout()
586 int sig = WTERMSIG (wstatus); in closeout()
597 else if (WIFEXITED (wstatus)) in closeout()
599 int ex = WEXITSTATUS (wstatus); in closeout()
608 _("unknown status from command (0x%X)"), wstatus + 0u); in closeout()