-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfcntl.nelua
69 lines (69 loc) · 2.9 KB
/
fcntl.nelua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
## cinclude '<fcntl.h>'
global flock: type <cimport,nodecl,ctypedef> = @record{
l_type: cshort,
l_whence: cshort,
l_start: clong,
l_len: clong,
l_pid: cint
}
global function fcntl(fd: cint, cmd: cint, ...: cvarargs): cint <cimport,nodecl> end
global function open(file: cstring, oflag: cint, ...: cvarargs): cint <cimport,nodecl> end
global function openat(fd: cint, file: cstring, oflag: cint, ...: cvarargs): cint <cimport,nodecl> end
global function creat(file: cstring, mode: cuint): cint <cimport,nodecl> end
global function posix_fadvise(fd: cint, offset: clong, len: clong, advise: cint): cint <cimport,nodecl> end
global function posix_fallocate(fd: cint, offset: clong, len: clong): cint <cimport,nodecl> end
global F_GETLK64: cint <comptime> = 5
global F_SETLK64: cint <comptime> = 6
global F_SETLKW64: cint <comptime> = 7
global O_ACCMODE: cint <comptime> = 3
global O_RDONLY: cint <comptime> = 0
global O_WRONLY: cint <comptime> = 1
global O_RDWR: cint <comptime> = 2
global O_CREAT: cint <comptime> = 64
global O_EXCL: cint <comptime> = 128
global O_NOCTTY: cint <comptime> = 256
global O_TRUNC: cint <comptime> = 512
global O_APPEND: cint <comptime> = 1024
global O_NONBLOCK: cint <comptime> = 2048
global O_NDELAY: cint <comptime> = O_NONBLOCK
global O_SYNC: cint <comptime> = 1052672
global O_FSYNC: cint <comptime> = O_SYNC
global O_ASYNC: cint <comptime> = 8192
global F_GETLK: cint <comptime> = 5
global F_SETLK: cint <comptime> = 6
global F_SETLKW: cint <comptime> = 7
global O_DIRECTORY: cint <cimport,nodecl,const>
global O_NOFOLLOW: cint <cimport,nodecl,const>
global O_CLOEXEC: cint <cimport,nodecl,const>
global O_DSYNC: cint <cimport,nodecl,const>
global O_RSYNC: cint <comptime> = O_SYNC
global F_DUPFD: cint <comptime> = 0
global F_GETFD: cint <comptime> = 1
global F_SETFD: cint <comptime> = 2
global F_GETFL: cint <comptime> = 3
global F_SETFL: cint <comptime> = 4
global F_SETOWN: cint <cimport,nodecl,const>
global F_GETOWN: cint <cimport,nodecl,const>
global F_DUPFD_CLOEXEC: cint <comptime> = 1030
global FD_CLOEXEC: cint <comptime> = 1
global F_RDLCK: cint <comptime> = 0
global F_WRLCK: cint <comptime> = 1
global F_UNLCK: cint <comptime> = 2
global F_EXLCK: cint <comptime> = 4
global F_SHLCK: cint <comptime> = 8
global POSIX_FADV_NORMAL: cint <comptime> = 0
global POSIX_FADV_RANDOM: cint <comptime> = 1
global POSIX_FADV_SEQUENTIAL: cint <comptime> = 2
global POSIX_FADV_WILLNEED: cint <comptime> = 3
global POSIX_FADV_DONTNEED: cint <cimport,nodecl,const>
global POSIX_FADV_NOREUSE: cint <cimport,nodecl,const>
global F_OK: cint <comptime> = 0
global AT_FDCWD: cint <comptime> = -100
global AT_SYMLINK_NOFOLLOW: cint <comptime> = 0x100
global AT_REMOVEDIR: cint <comptime> = 0x200
global AT_SYMLINK_FOLLOW: cint <comptime> = 0x400
global AT_EACCESS: cint <comptime> = 0x200
global F_ULOCK: cint <comptime> = 0
global F_LOCK: cint <comptime> = 1
global F_TLOCK: cint <comptime> = 2
global F_TEST: cint <comptime> = 3