mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
initial commit
This commit is contained in:
parent
29c1b97d28
commit
e5e73b96e1
10 changed files with 558 additions and 0 deletions
47
Lib/sunos5/FCNTL.py
Executable file
47
Lib/sunos5/FCNTL.py
Executable file
|
@ -0,0 +1,47 @@
|
|||
# Generated by h2py from /usr/include/sys/fcntl.h
|
||||
O_RDONLY = 0
|
||||
O_WRONLY = 1
|
||||
O_RDWR = 2
|
||||
O_NDELAY = 0x04
|
||||
O_APPEND = 0x08
|
||||
O_SYNC = 0x10
|
||||
O_DSYNC = 0x40
|
||||
O_RSYNC = 0x8000
|
||||
O_NONBLOCK = 0x80
|
||||
O_PRIV = 0x1000
|
||||
O_CREAT = 0x100
|
||||
O_TRUNC = 0x200
|
||||
O_EXCL = 0x400
|
||||
O_NOCTTY = 0x800
|
||||
F_DUPFD = 0
|
||||
F_GETFD = 1
|
||||
F_SETFD = 2
|
||||
F_GETFL = 3
|
||||
F_SETFL = 4
|
||||
F_SETLK = 6
|
||||
F_SETLKW = 7
|
||||
F_O_GETLK = 5
|
||||
F_SETLK = 6
|
||||
F_SETLKW = 7
|
||||
F_CHKFL = 8
|
||||
F_ALLOCSP = 10
|
||||
F_FREESP = 11
|
||||
F_ISSTREAM = 13
|
||||
F_GETLK = 14
|
||||
F_PRIV = 15
|
||||
F_NPRIV = 16
|
||||
F_QUOTACTL = 17
|
||||
F_BLOCKS = 18
|
||||
F_BLKSIZE = 19
|
||||
F_RSETLK = 20
|
||||
F_RGETLK = 21
|
||||
F_RSETLKW = 22
|
||||
F_GETOWN = 23
|
||||
F_SETOWN = 24
|
||||
F_REVOKE = 25
|
||||
F_RDLCK = 01
|
||||
F_WRLCK = 02
|
||||
F_UNLCK = 03
|
||||
F_UNLKSYS = 04
|
||||
O_ACCMODE = 3
|
||||
FD_CLOEXEC = 1
|
Loading…
Add table
Add a link
Reference in a new issue