]> git.proxmox.com Git - rustc.git/blame - src/liblibc/src/unix/notbsd/linux/musl/b32/arm.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / liblibc / src / unix / notbsd / linux / musl / b32 / arm.rs
CommitLineData
7453a54e
SL
1pub type c_char = u8;
2pub type wchar_t = u32;
92a42be0 3
54a0048b
SL
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
9cc50fc6
SL
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;
92a42be0
SL
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;
92a42be0
SL
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
7453a54e
SL
110pub const SOCK_NONBLOCK: ::c_int = 2048;
111
92a42be0 112pub const MAP_ANON: ::c_int = 0x0020;
92a42be0
SL
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
7453a54e
SL
122pub const SOCK_STREAM: ::c_int = 1;
123pub const SOCK_DGRAM: ::c_int = 2;
124
125pub const SOL_SOCKET: ::c_int = 1;
126
92a42be0
SL
127pub const EDEADLK: ::c_int = 35;
128pub const ENAMETOOLONG: ::c_int = 36;
129pub const ENOLCK: ::c_int = 37;
130pub const ENOSYS: ::c_int = 38;
131pub const ENOTEMPTY: ::c_int = 39;
132pub const ELOOP: ::c_int = 40;
133pub const ENOMSG: ::c_int = 42;
134pub const EIDRM: ::c_int = 43;
135pub const ECHRNG: ::c_int = 44;
136pub const EL2NSYNC: ::c_int = 45;
137pub const EL3HLT: ::c_int = 46;
138pub const EL3RST: ::c_int = 47;
139pub const ELNRNG: ::c_int = 48;
140pub const EUNATCH: ::c_int = 49;
141pub const ENOCSI: ::c_int = 50;
142pub const EL2HLT: ::c_int = 51;
143pub const EBADE: ::c_int = 52;
144pub const EBADR: ::c_int = 53;
145pub const EXFULL: ::c_int = 54;
146pub const ENOANO: ::c_int = 55;
147pub const EBADRQC: ::c_int = 56;
148pub const EBADSLT: ::c_int = 57;
149pub const EDEADLOCK: ::c_int = EDEADLK;
150pub const EMULTIHOP: ::c_int = 72;
7453a54e 151pub const EBADMSG: ::c_int = 74;
92a42be0
SL
152pub const EOVERFLOW: ::c_int = 75;
153pub const ENOTUNIQ: ::c_int = 76;
154pub const EBADFD: ::c_int = 77;
92a42be0
SL
155pub const EREMCHG: ::c_int = 78;
156pub const ELIBACC: ::c_int = 79;
157pub const ELIBBAD: ::c_int = 80;
158pub const ELIBSCN: ::c_int = 81;
159pub const ELIBMAX: ::c_int = 82;
160pub const ELIBEXEC: ::c_int = 83;
161pub const EILSEQ: ::c_int = 84;
162pub const ERESTART: ::c_int = 85;
163pub const ESTRPIPE: ::c_int = 86;
164pub const EUSERS: ::c_int = 87;
165pub const ENOTSOCK: ::c_int = 88;
166pub const EDESTADDRREQ: ::c_int = 89;
167pub const EMSGSIZE: ::c_int = 90;
168pub const EPROTOTYPE: ::c_int = 91;
169pub const ENOPROTOOPT: ::c_int = 92;
170pub const EPROTONOSUPPORT: ::c_int = 93;
171pub const ESOCKTNOSUPPORT: ::c_int = 94;
172pub const EOPNOTSUPP: ::c_int = 95;
173pub const EPFNOSUPPORT: ::c_int = 96;
174pub const EAFNOSUPPORT: ::c_int = 97;
175pub const EADDRINUSE: ::c_int = 98;
176pub const EADDRNOTAVAIL: ::c_int = 99;
177pub const ENETDOWN: ::c_int = 100;
178pub const ENETUNREACH: ::c_int = 101;
179pub const ENETRESET: ::c_int = 102;
180pub const ECONNABORTED: ::c_int = 103;
181pub const ECONNRESET: ::c_int = 104;
182pub const ENOBUFS: ::c_int = 105;
183pub const EISCONN: ::c_int = 106;
184pub const ENOTCONN: ::c_int = 107;
185pub const ESHUTDOWN: ::c_int = 108;
186pub const ETOOMANYREFS: ::c_int = 109;
187pub const ETIMEDOUT: ::c_int = 110;
188pub const ECONNREFUSED: ::c_int = 111;
189pub const EHOSTDOWN: ::c_int = 112;
190pub const EHOSTUNREACH: ::c_int = 113;
191pub const EALREADY: ::c_int = 114;
192pub const EINPROGRESS: ::c_int = 115;
193pub const ESTALE: ::c_int = 116;
194pub const EUCLEAN: ::c_int = 117;
195pub const ENOTNAM: ::c_int = 118;
196pub const ENAVAIL: ::c_int = 119;
197pub const EISNAM: ::c_int = 120;
198pub const EREMOTEIO: ::c_int = 121;
199pub const EDQUOT: ::c_int = 122;
200pub const ENOMEDIUM: ::c_int = 123;
201pub const EMEDIUMTYPE: ::c_int = 124;
202pub const ECANCELED: ::c_int = 125;
203pub const ENOKEY: ::c_int = 126;
204pub const EKEYEXPIRED: ::c_int = 127;
205pub const EKEYREVOKED: ::c_int = 128;
206pub const EKEYREJECTED: ::c_int = 129;
207pub const EOWNERDEAD: ::c_int = 130;
208pub const ENOTRECOVERABLE: ::c_int = 131;
92a42be0 209pub const ERFKILL: ::c_int = 132;
7453a54e 210pub const EHWPOISON: ::c_int = 133;
92a42be0
SL
211
212pub const SO_REUSEADDR: ::c_int = 2;
213pub const SO_TYPE: ::c_int = 3;
214pub const SO_ERROR: ::c_int = 4;
215pub const SO_DONTROUTE: ::c_int = 5;
216pub const SO_BROADCAST: ::c_int = 6;
217pub const SO_SNDBUF: ::c_int = 7;
218pub const SO_RCVBUF: ::c_int = 8;
219pub const SO_KEEPALIVE: ::c_int = 9;
220pub const SO_OOBINLINE: ::c_int = 10;
221pub const SO_LINGER: ::c_int = 13;
222pub const SO_REUSEPORT: ::c_int = 15;
223pub const SO_RCVLOWAT: ::c_int = 18;
224pub const SO_SNDLOWAT: ::c_int = 19;
225pub const SO_RCVTIMEO: ::c_int = 20;
226pub const SO_SNDTIMEO: ::c_int = 21;
227pub const SO_ACCEPTCONN: ::c_int = 30;
228
92a42be0
SL
229pub const SA_ONSTACK: ::c_int = 0x08000000;
230pub const SA_SIGINFO: ::c_int = 0x00000004;
231pub const SA_NOCLDWAIT: ::c_int = 0x00000002;
232
233pub const SIGCHLD: ::c_int = 17;
234pub const SIGBUS: ::c_int = 7;
9cc50fc6
SL
235pub const SIGTTIN: ::c_int = 21;
236pub const SIGTTOU: ::c_int = 22;
237pub const SIGXCPU: ::c_int = 24;
238pub const SIGXFSZ: ::c_int = 25;
239pub const SIGVTALRM: ::c_int = 26;
240pub const SIGPROF: ::c_int = 27;
241pub const SIGWINCH: ::c_int = 28;
242pub const SIGUSR1: ::c_int = 10;
243pub const SIGUSR2: ::c_int = 12;
244pub const SIGCONT: ::c_int = 18;
245pub const SIGSTOP: ::c_int = 19;
246pub const SIGTSTP: ::c_int = 20;
247pub const SIGURG: ::c_int = 23;
248pub const SIGIO: ::c_int = 29;
249pub const SIGSYS: ::c_int = 31;
250pub const SIGSTKFLT: ::c_int = 16;
9cc50fc6
SL
251pub const SIGPOLL: ::c_int = 29;
252pub const SIGPWR: ::c_int = 30;
92a42be0 253pub const SIG_SETMASK: ::c_int = 2;
9cc50fc6
SL
254pub const SIG_BLOCK: ::c_int = 0x000000;
255pub const SIG_UNBLOCK: ::c_int = 0x01;
92a42be0 256
9cc50fc6
SL
257pub const EXTPROC: ::tcflag_t = 0x00010000;
258
9cc50fc6
SL
259pub const MAP_HUGETLB: ::c_int = 0x040000;
260
7453a54e 261pub const F_GETLK: ::c_int = 12;
9cc50fc6 262pub const F_GETOWN: ::c_int = 9;
7453a54e
SL
263pub const F_SETLK: ::c_int = 13;
264pub const F_SETLKW: ::c_int = 14;
9cc50fc6
SL
265pub const F_SETOWN: ::c_int = 8;
266
267pub const VEOF: usize = 4;
268pub const VEOL: usize = 11;
269pub const VEOL2: usize = 16;
270pub const VMIN: usize = 6;
271pub const IEXTEN: ::tcflag_t = 0x00008000;
272pub const TOSTOP: ::tcflag_t = 0x00000100;
273pub const FLUSHO: ::tcflag_t = 0x00001000;
274
9cc50fc6
SL
275pub const TCGETS: ::c_ulong = 0x5401;
276pub const TCSETS: ::c_ulong = 0x5402;
277pub const TCSETSW: ::c_ulong = 0x5403;
278pub const TCSETSF: ::c_ulong = 0x5404;
279pub const TCGETA: ::c_ulong = 0x5405;
280pub const TCSETA: ::c_ulong = 0x5406;
281pub const TCSETAW: ::c_ulong = 0x5407;
282pub const TCSETAF: ::c_ulong = 0x5408;
283pub const TCSBRK: ::c_ulong = 0x5409;
284pub const TCXONC: ::c_ulong = 0x540A;
285pub const TCFLSH: ::c_ulong = 0x540B;
286pub const TIOCGSOFTCAR: ::c_ulong = 0x5419;
287pub const TIOCSSOFTCAR: ::c_ulong = 0x541A;
9cc50fc6
SL
288pub const TIOCLINUX: ::c_ulong = 0x541C;
289pub const TIOCGSERIAL: ::c_ulong = 0x541E;
290pub const TIOCEXCL: ::c_ulong = 0x540C;
291pub const TIOCNXCL: ::c_ulong = 0x540D;
292pub const TIOCSCTTY: ::c_ulong = 0x540E;
293pub const TIOCGPGRP: ::c_ulong = 0x540F;
294pub const TIOCSPGRP: ::c_ulong = 0x5410;
295pub const TIOCOUTQ: ::c_ulong = 0x5411;
296pub const TIOCSTI: ::c_ulong = 0x5412;
297pub const TIOCGWINSZ: ::c_ulong = 0x5413;
298pub const TIOCSWINSZ: ::c_ulong = 0x5414;
299pub const TIOCMGET: ::c_ulong = 0x5415;
300pub const TIOCMBIS: ::c_ulong = 0x5416;
301pub const TIOCMBIC: ::c_ulong = 0x5417;
302pub const TIOCMSET: ::c_ulong = 0x5418;
303pub const FIONREAD: ::c_ulong = 0x541B;
304pub const TIOCCONS: ::c_ulong = 0x541D;
305
54a0048b
SL
306pub const SYS_gettid: ::c_long = 224;
307pub const SYS_perf_event_open: ::c_long = 364;