Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 169b612

Browse files
committed
Constants from <sys/wait.h> (IRIX 5 version)
1 parent 6299d1e commit 169b612

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

Lib/irix5/WAIT.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by h2py from /usr/include/sys/wait.h
2+
_WSTOPPED = 0177
3+
WNOHANG = 0100
4+
WEXITED = 0001
5+
WTRAPPED = 0002
6+
WSTOPPED = 0004
7+
WCONTINUED = 0010
8+
WNOWAIT = 0200
9+
WOPTMASK = (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)
10+
WSTOPFLG = 0177
11+
WCONTFLG = 0177777
12+
WCOREFLAG = 0200
13+
WSIGMASK = 0177
14+
WUNTRACED = 0004

Lib/plat-irix5/WAIT.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by h2py from /usr/include/sys/wait.h
2+
_WSTOPPED = 0177
3+
WNOHANG = 0100
4+
WEXITED = 0001
5+
WTRAPPED = 0002
6+
WSTOPPED = 0004
7+
WCONTINUED = 0010
8+
WNOWAIT = 0200
9+
WOPTMASK = (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)
10+
WSTOPFLG = 0177
11+
WCONTFLG = 0177777
12+
WCOREFLAG = 0200
13+
WSIGMASK = 0177
14+
WUNTRACED = 0004

0 commit comments

Comments
 (0)