diff options
author | Guido van Rossum <guido@python.org> | 1994-06-03 15:39:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-06-03 15:39:39 (GMT) |
commit | 169b61295a43ebb08066085d50faeb737ba0f3c1 (patch) | |
tree | 94baea38afb43e936c6ecb3d38016eac06b92dc2 /Lib/irix5/WAIT.py | |
parent | 6299d1ee031b6fde5080b6f9d2e15cad6f75eee2 (diff) | |
download | cpython-169b61295a43ebb08066085d50faeb737ba0f3c1.zip cpython-169b61295a43ebb08066085d50faeb737ba0f3c1.tar.gz cpython-169b61295a43ebb08066085d50faeb737ba0f3c1.tar.bz2 |
Constants from <sys/wait.h> (IRIX 5 version)
Diffstat (limited to 'Lib/irix5/WAIT.py')
-rwxr-xr-x | Lib/irix5/WAIT.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/irix5/WAIT.py b/Lib/irix5/WAIT.py new file mode 100755 index 0000000..bfd0133 --- /dev/null +++ b/Lib/irix5/WAIT.py @@ -0,0 +1,14 @@ +# Generated by h2py from /usr/include/sys/wait.h +_WSTOPPED = 0177 +WNOHANG = 0100 +WEXITED = 0001 +WTRAPPED = 0002 +WSTOPPED = 0004 +WCONTINUED = 0010 +WNOWAIT = 0200 +WOPTMASK = (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT) +WSTOPFLG = 0177 +WCONTFLG = 0177777 +WCOREFLAG = 0200 +WSIGMASK = 0177 +WUNTRACED = 0004 |