]> git.proxmox.com Git - rustc.git/blame - src/vendor/libc/src/unix/notbsd/linux/other/b32/x86.rs
New upstream version 1.15.0+dfsg1
[rustc.git] / src / vendor / libc / src / unix / notbsd / linux / other / b32 / x86.rs
CommitLineData
476ff2be
SL
1pub type c_char = i8;
2pub type wchar_t = i32;
3pub type greg_t = i32;
4
5s! {
6 pub struct _libc_fpreg {
7 pub significand: [u16; 4],
8 pub exponent: u16,
9 }
10
11 pub struct _libc_fpstate {
12 pub cw: ::c_ulong,
13 pub sw: ::c_ulong,
14 pub tag: ::c_ulong,
15 pub ipoff: ::c_ulong,
16 pub cssel: ::c_ulong,
17 pub dataoff: ::c_ulong,
18 pub datasel: ::c_ulong,
19 pub _st: [_libc_fpreg; 8],
20 pub status: ::c_ulong,
21 }
22
23 pub struct mcontext_t {
24 pub gregs: [greg_t; 19],
25 pub fpregs: *mut _libc_fpstate,
26 pub oldmask: ::c_ulong,
27 pub cr2: ::c_ulong,
28 }
29
30 pub struct ucontext_t {
31 pub uc_flags: ::c_ulong,
32 pub uc_link: *mut ucontext_t,
33 pub uc_stack: ::stack_t,
34 pub uc_mcontext: mcontext_t,
35 pub uc_sigmask: ::sigset_t,
36 __private: [u8; 112],
37 }
38
39 pub struct ipc_perm {
40 pub __key: ::key_t,
41 pub uid: ::uid_t,
42 pub gid: ::gid_t,
43 pub cuid: ::uid_t,
44 pub cgid: ::gid_t,
45 pub mode: ::c_ushort,
46 __pad1: ::c_ushort,
47 pub __seq: ::c_ushort,
48 __pad2: ::c_ushort,
49 __unused1: ::c_ulong,
50 __unused2: ::c_ulong
51 }
52
53 pub struct stat64 {
54 pub st_dev: ::dev_t,
55 __pad1: ::c_uint,
56 __st_ino: ::ino_t,
57 pub st_mode: ::mode_t,
58 pub st_nlink: ::nlink_t,
59 pub st_uid: ::uid_t,
60 pub st_gid: ::gid_t,
61 pub st_rdev: ::dev_t,
62 __pad2: ::c_uint,
63 pub st_size: ::off64_t,
64 pub st_blksize: ::blksize_t,
65 pub st_blocks: ::blkcnt64_t,
66 pub st_atime: ::time_t,
67 pub st_atime_nsec: ::c_long,
68 pub st_mtime: ::time_t,
69 pub st_mtime_nsec: ::c_long,
70 pub st_ctime: ::time_t,
71 pub st_ctime_nsec: ::c_long,
72 pub st_ino: ::ino64_t,
73 }
74
75 pub struct shmid_ds {
76 pub shm_perm: ::ipc_perm,
77 pub shm_segsz: ::size_t,
78 pub shm_atime: ::time_t,
79 __unused1: ::c_ulong,
80 pub shm_dtime: ::time_t,
81 __unused2: ::c_ulong,
82 pub shm_ctime: ::time_t,
83 __unused3: ::c_ulong,
84 pub shm_cpid: ::pid_t,
85 pub shm_lpid: ::pid_t,
86 pub shm_nattch: ::shmatt_t,
87 __unused4: ::c_ulong,
88 __unused5: ::c_ulong
89 }
90
91 pub struct msqid_ds {
92 pub msg_perm: ::ipc_perm,
93 pub msg_stime: ::time_t,
94 __glibc_reserved1: ::c_ulong,
95 pub msg_rtime: ::time_t,
96 __glibc_reserved2: ::c_ulong,
97 pub msg_ctime: ::time_t,
98 __glibc_reserved3: ::c_ulong,
99 __msg_cbytes: ::c_ulong,
100 pub msg_qnum: ::msgqnum_t,
101 pub msg_qbytes: ::msglen_t,
102 pub msg_lspid: ::pid_t,
103 pub msg_lrpid: ::pid_t,
104 __glibc_reserved4: ::c_ulong,
105 __glibc_reserved5: ::c_ulong,
106 }
107}
108
109pub const O_DIRECT: ::c_int = 0x4000;
110pub const O_DIRECTORY: ::c_int = 0x10000;
111pub const O_NOFOLLOW: ::c_int = 0x20000;
112
113pub const MAP_LOCKED: ::c_int = 0x02000;
114pub const MAP_NORESERVE: ::c_int = 0x04000;
115pub const MAP_32BIT: ::c_int = 0x0040;
116
117pub const EDEADLOCK: ::c_int = 35;
118
119pub const SO_PEERCRED: ::c_int = 17;
120pub const SO_RCVLOWAT: ::c_int = 18;
121pub const SO_SNDLOWAT: ::c_int = 19;
122pub const SO_RCVTIMEO: ::c_int = 20;
123pub const SO_SNDTIMEO: ::c_int = 21;
124
125pub const FIOCLEX: ::c_ulong = 0x5451;
126pub const FIONBIO: ::c_ulong = 0x5421;
127
128pub const SYS_gettid: ::c_long = 224;
129pub const SYS_perf_event_open: ::c_long = 336;
130
131pub const PTRACE_GETFPXREGS: ::c_uint = 18;
132pub const PTRACE_SETFPXREGS: ::c_uint = 19;
133
134pub const MCL_CURRENT: ::c_int = 0x0001;
135pub const MCL_FUTURE: ::c_int = 0x0002;
136
137pub const SIGSTKSZ: ::size_t = 8192;
138pub const CBAUD: ::tcflag_t = 0o0010017;
139pub const TAB1: ::c_int = 0x00000800;
140pub const TAB2: ::c_int = 0x00001000;
141pub const TAB3: ::c_int = 0x00001800;
142pub const CR1: ::c_int = 0x00000200;
143pub const CR2: ::c_int = 0x00000400;
144pub const CR3: ::c_int = 0x00000600;
145pub const FF1: ::c_int = 0x00008000;
146pub const BS1: ::c_int = 0x00002000;
147pub const VT1: ::c_int = 0x00004000;
148pub const VWERASE: usize = 14;
149pub const VREPRINT: usize = 12;
150pub const VSUSP: usize = 10;
151pub const VSTART: usize = 8;
152pub const VSTOP: usize = 9;
153pub const VDISCARD: usize = 13;
154pub const VTIME: usize = 5;
155pub const IXON: ::tcflag_t = 0x00000400;
156pub const IXOFF: ::tcflag_t = 0x00001000;
157pub const ONLCR: ::tcflag_t = 0x4;
158pub const CSIZE: ::tcflag_t = 0x00000030;
159pub const CS6: ::tcflag_t = 0x00000010;
160pub const CS7: ::tcflag_t = 0x00000020;
161pub const CS8: ::tcflag_t = 0x00000030;
162pub const CSTOPB: ::tcflag_t = 0x00000040;
163pub const CREAD: ::tcflag_t = 0x00000080;
164pub const PARENB: ::tcflag_t = 0x00000100;
165pub const PARODD: ::tcflag_t = 0x00000200;
166pub const HUPCL: ::tcflag_t = 0x00000400;
167pub const CLOCAL: ::tcflag_t = 0x00000800;
168pub const ECHOKE: ::tcflag_t = 0x00000800;
169pub const ECHOE: ::tcflag_t = 0x00000010;
170pub const ECHOK: ::tcflag_t = 0x00000020;
171pub const ECHONL: ::tcflag_t = 0x00000040;
172pub const ECHOPRT: ::tcflag_t = 0x00000400;
173pub const ECHOCTL: ::tcflag_t = 0x00000200;
174pub const ISIG: ::tcflag_t = 0x00000001;
175pub const ICANON: ::tcflag_t = 0x00000002;
176pub const PENDIN: ::tcflag_t = 0x00004000;
177pub const NOFLSH: ::tcflag_t = 0x00000080;
178
179pub const VEOL: usize = 11;
180pub const VEOL2: usize = 16;
181pub const VMIN: usize = 6;
182pub const IEXTEN: ::tcflag_t = 0x00008000;
183pub const TOSTOP: ::tcflag_t = 0x00000100;
184pub const FLUSHO: ::tcflag_t = 0x00001000;
185pub const EXTPROC: ::tcflag_t = 0x00010000;
186pub const TCGETS: ::c_ulong = 0x5401;
187pub const TCSETS: ::c_ulong = 0x5402;
188pub const TCSETSW: ::c_ulong = 0x5403;
189pub const TCSETSF: ::c_ulong = 0x5404;
190pub const TCGETA: ::c_ulong = 0x5405;
191pub const TCSETA: ::c_ulong = 0x5406;
192pub const TCSETAW: ::c_ulong = 0x5407;
193pub const TCSETAF: ::c_ulong = 0x5408;
194pub const TCSBRK: ::c_ulong = 0x5409;
195pub const TCXONC: ::c_ulong = 0x540A;
196pub const TCFLSH: ::c_ulong = 0x540B;
197pub const TIOCINQ: ::c_ulong = 0x541B;
198pub const TIOCGPGRP: ::c_ulong = 0x540F;
199pub const TIOCSPGRP: ::c_ulong = 0x5410;
200pub const TIOCOUTQ: ::c_ulong = 0x5411;
201pub const TIOCGWINSZ: ::c_ulong = 0x5413;
202pub const TIOCSWINSZ: ::c_ulong = 0x5414;
203pub const FIONREAD: ::c_ulong = 0x541B;
204
205extern {
206 pub fn getcontext(ucp: *mut ucontext_t) -> ::c_int;
207 pub fn setcontext(ucp: *const ucontext_t) -> ::c_int;
208 pub fn makecontext(ucp: *mut ucontext_t,
209 func: extern fn (),
210 argc: ::c_int, ...);
211 pub fn swapcontext(uocp: *mut ucontext_t,
212 ucp: *const ucontext_t) -> ::c_int;
213}