File: wait.h

package info (click to toggle)
fio 3.41-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,012 kB
  • sloc: ansic: 82,290; python: 9,862; sh: 6,067; makefile: 813; yacc: 204; lex: 184
file content (12 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SYS_WAIT_H
#define SYS_WAIT_H

#define WIFSIGNALED(a)	0
#define WIFEXITED(a)	0
#define WTERMSIG(a)		0
#define WEXITSTATUS(a)	0
#define WNOHANG			1

pid_t waitpid(pid_t, int *stat_loc, int options);

#endif /* SYS_WAIT_H */