summaryrefslogtreecommitdiff
path: root/third_party/libc/src/unix/notbsd/linux/musl/b32/arm.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libc/src/unix/notbsd/linux/musl/b32/arm.rs')
-rw-r--r--third_party/libc/src/unix/notbsd/linux/musl/b32/arm.rs308
1 files changed, 308 insertions, 0 deletions
diff --git a/third_party/libc/src/unix/notbsd/linux/musl/b32/arm.rs b/third_party/libc/src/unix/notbsd/linux/musl/b32/arm.rs
new file mode 100644
index 0000000..5d64861
--- /dev/null
+++ b/third_party/libc/src/unix/notbsd/linux/musl/b32/arm.rs
@@ -0,0 +1,308 @@
1pub type c_char = u8;
2pub type wchar_t = u32;
3
4s! {
5 pub struct stat {
6 pub st_dev: ::dev_t,
7 __st_dev_padding: ::c_int,
8 __st_ino_truncated: ::c_long,
9 pub st_mode: ::mode_t,
10 pub st_nlink: ::nlink_t,
11 pub st_uid: ::uid_t,
12 pub st_gid: ::gid_t,
13 pub st_rdev: ::dev_t,
14 __st_rdev_padding: ::c_int,
15 pub st_size: ::off_t,
16 pub st_blksize: ::blksize_t,
17 pub st_blocks: ::blkcnt_t,
18 pub st_atime: ::time_t,
19 pub st_atime_nsec: ::c_long,
20 pub st_mtime: ::time_t,
21 pub st_mtime_nsec: ::c_long,
22 pub st_ctime: ::time_t,
23 pub st_ctime_nsec: ::c_long,
24 pub st_ino: ::ino_t,
25 }
26
27 pub struct stat64 {
28 pub st_dev: ::dev_t,
29 __st_dev_padding: ::c_int,
30 __st_ino_truncated: ::c_long,
31 pub st_mode: ::mode_t,
32 pub st_nlink: ::nlink_t,
33 pub st_uid: ::uid_t,
34 pub st_gid: ::gid_t,
35 pub st_rdev: ::dev_t,
36 __st_rdev_padding: ::c_int,
37 pub st_size: ::off_t,
38 pub st_blksize: ::blksize_t,
39 pub st_blocks: ::blkcnt_t,
40 pub st_atime: ::time_t,
41 pub st_atime_nsec: ::c_long,
42 pub st_mtime: ::time_t,
43 pub st_mtime_nsec: ::c_long,
44 pub st_ctime: ::time_t,
45 pub st_ctime_nsec: ::c_long,
46 pub st_ino: ::ino_t,
47 }
48
49 pub struct stack_t {
50 pub ss_sp: *mut ::c_void,
51 pub ss_flags: ::c_int,
52 pub ss_size: ::size_t
53 }
54
55 pub struct shmid_ds {
56 pub shm_perm: ::ipc_perm,
57 pub shm_segsz: ::size_t,
58 pub shm_atime: ::time_t,
59 __unused1: ::c_int,
60 pub shm_dtime: ::time_t,
61 __unused2: ::c_int,
62 pub shm_ctime: ::time_t,
63 __unused3: ::c_int,
64 pub shm_cpid: ::pid_t,
65 pub shm_lpid: ::pid_t,
66 pub shm_nattch: ::c_ulong,
67 __pad1: ::c_ulong,
68 __pad2: ::c_ulong,
69 }
70
71 pub struct statfs {
72 pub f_type: ::c_ulong,
73 pub f_bsize: ::c_ulong,
74 pub f_blocks: ::fsblkcnt_t,
75 pub f_bfree: ::fsblkcnt_t,
76 pub f_bavail: ::fsblkcnt_t,
77 pub f_files: ::fsfilcnt_t,
78 pub f_ffree: ::fsfilcnt_t,
79 pub f_fsid: ::fsid_t,
80 pub f_namelen: ::c_ulong,
81 pub f_frsize: ::c_ulong,
82 pub f_flags: ::c_ulong,
83 pub f_spare: [::c_ulong; 4],
84 }
85}
86
87pub const O_DIRECT: ::c_int = 0x4000;
88pub const O_DIRECTORY: ::c_int = 0x10000;
89pub const O_NOFOLLOW: ::c_int = 0x20000;
90pub const O_ASYNC: ::c_int = 0x2000;
91
92pub const FIOCLEX: ::c_int = 0x5451;
93pub const FIONBIO: ::c_int = 0x5421;
94
95pub const RLIMIT_RSS: ::c_int = 5;
96pub const RLIMIT_NOFILE: ::c_int = 7;
97pub const RLIMIT_AS: ::c_int = 9;
98pub const RLIMIT_NPROC: ::c_int = 6;
99pub const RLIMIT_MEMLOCK: ::c_int = 8;
100
101pub const O_APPEND: ::c_int = 1024;
102pub const O_CREAT: ::c_int = 64;
103pub const O_EXCL: ::c_int = 128;
104pub const O_NOCTTY: ::c_int = 256;
105pub const O_NONBLOCK: ::c_int = 2048;
106pub const O_SYNC: ::c_int = 1052672;
107pub const O_RSYNC: ::c_int = 1052672;
108pub const O_DSYNC: ::c_int = 4096;
109
110pub const SOCK_NONBLOCK: ::c_int = 2048;
111
112pub const MAP_ANON: ::c_int = 0x0020;
113pub const MAP_GROWSDOWN: ::c_int = 0x0100;
114pub const MAP_DENYWRITE: ::c_int = 0x0800;
115pub const MAP_EXECUTABLE: ::c_int = 0x01000;
116pub const MAP_LOCKED: ::c_int = 0x02000;
117pub const MAP_NORESERVE: ::c_int = 0x04000;
118pub const MAP_POPULATE: ::c_int = 0x08000;
119pub const MAP_NONBLOCK: ::c_int = 0x010000;
120pub const MAP_STACK: ::c_int = 0x020000;
121
122pub const SOCK_STREAM: ::c_int = 1;
123pub const SOCK_DGRAM: ::c_int = 2;
124pub const SOCK_SEQPACKET: ::c_int = 5;
125
126pub const SOL_SOCKET: ::c_int = 1;
127
128pub const EDEADLK: ::c_int = 35;
129pub const ENAMETOOLONG: ::c_int = 36;
130pub const ENOLCK: ::c_int = 37;
131pub const ENOSYS: ::c_int = 38;
132pub const ENOTEMPTY: ::c_int = 39;
133pub const ELOOP: ::c_int = 40;
134pub const ENOMSG: ::c_int = 42;
135pub const EIDRM: ::c_int = 43;
136pub const ECHRNG: ::c_int = 44;
137pub const EL2NSYNC: ::c_int = 45;
138pub const EL3HLT: ::c_int = 46;
139pub const EL3RST: ::c_int = 47;
140pub const ELNRNG: ::c_int = 48;
141pub const EUNATCH: ::c_int = 49;
142pub const ENOCSI: ::c_int = 50;
143pub const EL2HLT: ::c_int = 51;
144pub const EBADE: ::c_int = 52;
145pub const EBADR: ::c_int = 53;
146pub const EXFULL: ::c_int = 54;
147pub const ENOANO: ::c_int = 55;
148pub const EBADRQC: ::c_int = 56;
149pub const EBADSLT: ::c_int = 57;
150pub const EDEADLOCK: ::c_int = EDEADLK;
151pub const EMULTIHOP: ::c_int = 72;
152pub const EBADMSG: ::c_int = 74;
153pub const EOVERFLOW: ::c_int = 75;
154pub const ENOTUNIQ: ::c_int = 76;
155pub const EBADFD: ::c_int = 77;
156pub const EREMCHG: ::c_int = 78;
157pub const ELIBACC: ::c_int = 79;
158pub const ELIBBAD: ::c_int = 80;
159pub const ELIBSCN: ::c_int = 81;
160pub const ELIBMAX: ::c_int = 82;
161pub const ELIBEXEC: ::c_int = 83;
162pub const EILSEQ: ::c_int = 84;
163pub const ERESTART: ::c_int = 85;
164pub const ESTRPIPE: ::c_int = 86;
165pub const EUSERS: ::c_int = 87;
166pub const ENOTSOCK: ::c_int = 88;
167pub const EDESTADDRREQ: ::c_int = 89;
168pub const EMSGSIZE: ::c_int = 90;
169pub const EPROTOTYPE: ::c_int = 91;
170pub const ENOPROTOOPT: ::c_int = 92;
171pub const EPROTONOSUPPORT: ::c_int = 93;
172pub const ESOCKTNOSUPPORT: ::c_int = 94;
173pub const EOPNOTSUPP: ::c_int = 95;
174pub const EPFNOSUPPORT: ::c_int = 96;
175pub const EAFNOSUPPORT: ::c_int = 97;
176pub const EADDRINUSE: ::c_int = 98;
177pub const EADDRNOTAVAIL: ::c_int = 99;
178pub const ENETDOWN: ::c_int = 100;
179pub const ENETUNREACH: ::c_int = 101;
180pub const ENETRESET: ::c_int = 102;
181pub const ECONNABORTED: ::c_int = 103;
182pub const ECONNRESET: ::c_int = 104;
183pub const ENOBUFS: ::c_int = 105;
184pub const EISCONN: ::c_int = 106;
185pub const ENOTCONN: ::c_int = 107;
186pub const ESHUTDOWN: ::c_int = 108;
187pub const ETOOMANYREFS: ::c_int = 109;
188pub const ETIMEDOUT: ::c_int = 110;
189pub const ECONNREFUSED: ::c_int = 111;
190pub const EHOSTDOWN: ::c_int = 112;
191pub const EHOSTUNREACH: ::c_int = 113;
192pub const EALREADY: ::c_int = 114;
193pub const EINPROGRESS: ::c_int = 115;
194pub const ESTALE: ::c_int = 116;
195pub const EUCLEAN: ::c_int = 117;
196pub const ENOTNAM: ::c_int = 118;
197pub const ENAVAIL: ::c_int = 119;
198pub const EISNAM: ::c_int = 120;
199pub const EREMOTEIO: ::c_int = 121;
200pub const EDQUOT: ::c_int = 122;
201pub const ENOMEDIUM: ::c_int = 123;
202pub const EMEDIUMTYPE: ::c_int = 124;
203pub const ECANCELED: ::c_int = 125;
204pub const ENOKEY: ::c_int = 126;
205pub const EKEYEXPIRED: ::c_int = 127;
206pub const EKEYREVOKED: ::c_int = 128;
207pub const EKEYREJECTED: ::c_int = 129;
208pub const EOWNERDEAD: ::c_int = 130;
209pub const ENOTRECOVERABLE: ::c_int = 131;
210pub const ERFKILL: ::c_int = 132;
211pub const EHWPOISON: ::c_int = 133;
212
213pub const SO_REUSEADDR: ::c_int = 2;
214pub const SO_TYPE: ::c_int = 3;
215pub const SO_ERROR: ::c_int = 4;
216pub const SO_DONTROUTE: ::c_int = 5;
217pub const SO_BROADCAST: ::c_int = 6;
218pub const SO_SNDBUF: ::c_int = 7;
219pub const SO_RCVBUF: ::c_int = 8;
220pub const SO_KEEPALIVE: ::c_int = 9;
221pub const SO_OOBINLINE: ::c_int = 10;
222pub const SO_LINGER: ::c_int = 13;
223pub const SO_REUSEPORT: ::c_int = 15;
224pub const SO_RCVLOWAT: ::c_int = 18;
225pub const SO_SNDLOWAT: ::c_int = 19;
226pub const SO_RCVTIMEO: ::c_int = 20;
227pub const SO_SNDTIMEO: ::c_int = 21;
228pub const SO_ACCEPTCONN: ::c_int = 30;
229
230pub const SA_ONSTACK: ::c_int = 0x08000000;
231pub const SA_SIGINFO: ::c_int = 0x00000004;
232pub const SA_NOCLDWAIT: ::c_int = 0x00000002;
233
234pub const SIGCHLD: ::c_int = 17;
235pub const SIGBUS: ::c_int = 7;
236pub const SIGTTIN: ::c_int = 21;
237pub const SIGTTOU: ::c_int = 22;
238pub const SIGXCPU: ::c_int = 24;
239pub const SIGXFSZ: ::c_int = 25;
240pub const SIGVTALRM: ::c_int = 26;
241pub const SIGPROF: ::c_int = 27;
242pub const SIGWINCH: ::c_int = 28;
243pub const SIGUSR1: ::c_int = 10;
244pub const SIGUSR2: ::c_int = 12;
245pub const SIGCONT: ::c_int = 18;
246pub const SIGSTOP: ::c_int = 19;
247pub const SIGTSTP: ::c_int = 20;
248pub const SIGURG: ::c_int = 23;
249pub const SIGIO: ::c_int = 29;
250pub const SIGSYS: ::c_int = 31;
251pub const SIGSTKFLT: ::c_int = 16;
252pub const SIGPOLL: ::c_int = 29;
253pub const SIGPWR: ::c_int = 30;
254pub const SIG_SETMASK: ::c_int = 2;
255pub const SIG_BLOCK: ::c_int = 0x000000;
256pub const SIG_UNBLOCK: ::c_int = 0x01;
257
258pub const EXTPROC: ::tcflag_t = 0x00010000;
259
260pub const MAP_HUGETLB: ::c_int = 0x040000;
261
262pub const F_GETLK: ::c_int = 12;
263pub const F_GETOWN: ::c_int = 9;
264pub const F_SETLK: ::c_int = 13;
265pub const F_SETLKW: ::c_int = 14;
266pub const F_SETOWN: ::c_int = 8;
267
268pub const VEOF: usize = 4;
269pub const VEOL: usize = 11;
270pub const VEOL2: usize = 16;
271pub const VMIN: usize = 6;
272pub const IEXTEN: ::tcflag_t = 0x00008000;
273pub const TOSTOP: ::tcflag_t = 0x00000100;
274pub const FLUSHO: ::tcflag_t = 0x00001000;
275
276pub const TCGETS: ::c_int = 0x5401;
277pub const TCSETS: ::c_int = 0x5402;
278pub const TCSETSW: ::c_int = 0x5403;
279pub const TCSETSF: ::c_int = 0x5404;
280pub const TCGETA: ::c_int = 0x5405;
281pub const TCSETA: ::c_int = 0x5406;
282pub const TCSETAW: ::c_int = 0x5407;
283pub const TCSETAF: ::c_int = 0x5408;
284pub const TCSBRK: ::c_int = 0x5409;
285pub const TCXONC: ::c_int = 0x540A;
286pub const TCFLSH: ::c_int = 0x540B;
287pub const TIOCGSOFTCAR: ::c_int = 0x5419;
288pub const TIOCSSOFTCAR: ::c_int = 0x541A;
289pub const TIOCLINUX: ::c_int = 0x541C;
290pub const TIOCGSERIAL: ::c_int = 0x541E;
291pub const TIOCEXCL: ::c_int = 0x540C;
292pub const TIOCNXCL: ::c_int = 0x540D;
293pub const TIOCSCTTY: ::c_int = 0x540E;
294pub const TIOCGPGRP: ::c_int = 0x540F;
295pub const TIOCSPGRP: ::c_int = 0x5410;
296pub const TIOCOUTQ: ::c_int = 0x5411;
297pub const TIOCSTI: ::c_int = 0x5412;
298pub const TIOCGWINSZ: ::c_int = 0x5413;
299pub const TIOCSWINSZ: ::c_int = 0x5414;
300pub const TIOCMGET: ::c_int = 0x5415;
301pub const TIOCMBIS: ::c_int = 0x5416;
302pub const TIOCMBIC: ::c_int = 0x5417;
303pub const TIOCMSET: ::c_int = 0x5418;
304pub const FIONREAD: ::c_int = 0x541B;
305pub const TIOCCONS: ::c_int = 0x541D;
306
307pub const SYS_gettid: ::c_long = 224;
308pub const SYS_perf_event_open: ::c_long = 364;