wait revision da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsynclib wait,wait2,wait3,wait4,waitpid
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsynctst ok_wif sys/types.h sys/wait.h note{ posix wait macros ok }end compile{
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsync int ifexited = WIFEXITED(0);
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsync int exitstatus = WEXITSTATUS(0);
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsync int ifsignaled = WIFSIGNALED(0);
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsync int termsig = WTERMSIG(0);
c7814cf6e1240a519cbec0441e033d0e2470ed00vboxsync int ifstopped = WIFSTOPPED(0);
a5fb10feb5ad0a875c114c6f117b9718784c9650vboxsync int stopsig = WSTOPSIG(0);