You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
484 B
30 lines
484 B
/* asm-generic/fcntl.h */ |
|
F_DUPFD 0 |
|
F_GETFD 1 |
|
F_SETFD 2 |
|
F_GETFL 3 |
|
F_SETFL 4 |
|
F_GETLK 5 |
|
F_SETLK 6 |
|
F_SETLKW 7 |
|
F_SETOWN 8 |
|
F_GETOWN 9 |
|
F_SETSIG 10 |
|
F_GETSIG 11 |
|
F_SETOWN_EX 15 |
|
F_GETOWN_EX 16 |
|
F_GETOWNER_UIDS 17 |
|
F_OFD_GETLK 36 |
|
F_OFD_SETLK 37 |
|
F_OFD_SETLKW 38 |
|
|
|
/* linux/fcntl.h */ |
|
F_SETLEASE (1024 + 0) |
|
F_GETLEASE (1024 + 1) |
|
F_NOTIFY (1024 + 2) |
|
F_CANCELLK (1024 + 5) |
|
F_DUPFD_CLOEXEC (1024 + 6) |
|
F_SETPIPE_SZ (1024 + 7) |
|
F_GETPIPE_SZ (1024 + 8) |
|
F_ADD_SEALS (1024 + 9) |
|
F_GET_SEALS (1024 + 10)
|
|
|