summaryrefslogtreecommitdiff
path: root/src/user/lib/include/sys/wait.h
blob: c71418ccf7e61d88daef245f08db8aa41e0b84d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include <sys/types.h>

#define WIFSTOPPED(x) 0
#define WEXITSTATUS(x) 0
#define WIFEXITED(x) 0
#define WSTOPSIG(x) 0
#define WTERMSIG(x) 0

#define WNOHANG 0
#define WUNTRACED 0

pid_t wait3(int *wstatus, int opts, struct rusage *rusage);