File: wait.h

package info (click to toggle)
dot-forward 1%3A0.71-2.2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 488 kB
  • ctags: 344
  • sloc: ansic: 2,840; makefile: 367; sh: 131
file content (14 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (43)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef WAIT_H
#define WAIT_H

extern int wait_pid();
extern int wait_nohang();
extern int wait_stop();
extern int wait_stopnohang();

#define wait_crashed(w) ((w) & 127)
#define wait_exitcode(w) ((w) >> 8)
#define wait_stopsig(w) ((w) >> 8)
#define wait_stopped(w) (((w) & 127) == 127)

#endif