1pub type c_char = i8;
4pub type wchar_t = i32;
5pub type nlink_t = u64;
6pub type blksize_t = i64;
7pub type greg_t = i64;
8pub type suseconds_t = i64;
9pub type __u64 = ::c_ulonglong;
10
11s! {
12 pub struct stat {
13 pub st_dev: ::dev_t,
14 pub st_ino: ::ino_t,
15 pub st_nlink: ::nlink_t,
16 pub st_mode: ::mode_t,
17 pub st_uid: ::uid_t,
18 pub st_gid: ::gid_t,
19 __pad0: ::c_int,
20 pub st_rdev: ::dev_t,
21 pub st_size: ::off_t,
22 pub st_blksize: ::blksize_t,
23 pub st_blocks: ::blkcnt_t,
24 pub st_atime: ::time_t,
25 pub st_atime_nsec: i64,
26 pub st_mtime: ::time_t,
27 pub st_mtime_nsec: i64,
28 pub st_ctime: ::time_t,
29 pub st_ctime_nsec: i64,
30 __unused: [i64; 3],
31 }
32
33 pub struct stat64 {
34 pub st_dev: ::dev_t,
35 pub st_ino: ::ino64_t,
36 pub st_nlink: ::nlink_t,
37 pub st_mode: ::mode_t,
38 pub st_uid: ::uid_t,
39 pub st_gid: ::gid_t,
40 __pad0: ::c_int,
41 pub st_rdev: ::dev_t,
42 pub st_size: ::off_t,
43 pub st_blksize: ::blksize_t,
44 pub st_blocks: ::blkcnt64_t,
45 pub st_atime: ::time_t,
46 pub st_atime_nsec: i64,
47 pub st_mtime: ::time_t,
48 pub st_mtime_nsec: i64,
49 pub st_ctime: ::time_t,
50 pub st_ctime_nsec: i64,
51 __reserved: [i64; 3],
52 }
53
54 pub struct statfs64 {
55 pub f_type: ::__fsword_t,
56 pub f_bsize: ::__fsword_t,
57 pub f_blocks: u64,
58 pub f_bfree: u64,
59 pub f_bavail: u64,
60 pub f_files: u64,
61 pub f_ffree: u64,
62 pub f_fsid: ::fsid_t,
63 pub f_namelen: ::__fsword_t,
64 pub f_frsize: ::__fsword_t,
65 pub f_flags: ::__fsword_t,
66 pub f_spare: [::__fsword_t; 4],
67 }
68
69 pub struct statvfs64 {
70 pub f_bsize: ::c_ulong,
71 pub f_frsize: ::c_ulong,
72 pub f_blocks: u64,
73 pub f_bfree: u64,
74 pub f_bavail: u64,
75 pub f_files: u64,
76 pub f_ffree: u64,
77 pub f_favail: u64,
78 pub f_fsid: ::c_ulong,
79 pub f_flag: ::c_ulong,
80 pub f_namemax: ::c_ulong,
81 __f_spare: [::c_int; 6],
82 }
83
84 pub struct pthread_attr_t {
85 #[cfg(target_pointer_width = "32")]
86 __size: [u32; 8],
87 #[cfg(target_pointer_width = "64")]
88 __size: [u64; 7]
89 }
90
91 pub struct _libc_fpxreg {
92 pub significand: [u16; 4],
93 pub exponent: u16,
94 __private: [u16; 3],
95 }
96
97 pub struct _libc_xmmreg {
98 pub element: [u32; 4],
99 }
100
101 pub struct _libc_fpstate {
102 pub cwd: u16,
103 pub swd: u16,
104 pub ftw: u16,
105 pub fop: u16,
106 pub rip: u64,
107 pub rdp: u64,
108 pub mxcsr: u32,
109 pub mxcr_mask: u32,
110 pub _st: [_libc_fpxreg; 8],
111 pub _xmm: [_libc_xmmreg; 16],
112 __private: [u64; 12],
113 }
114
115 pub struct user_fpregs_struct {
116 pub cwd: ::c_ushort,
117 pub swd: ::c_ushort,
118 pub ftw: ::c_ushort,
119 pub fop: ::c_ushort,
120 pub rip: ::c_ulonglong,
121 pub rdp: ::c_ulonglong,
122 pub mxcsr: ::c_uint,
123 pub mxcr_mask: ::c_uint,
124 pub st_space: [::c_uint; 32],
125 pub xmm_space: [::c_uint; 64],
126 padding: [::c_uint; 24],
127 }
128
129 pub struct user_regs_struct {
130 pub r15: ::c_ulonglong,
131 pub r14: ::c_ulonglong,
132 pub r13: ::c_ulonglong,
133 pub r12: ::c_ulonglong,
134 pub rbp: ::c_ulonglong,
135 pub rbx: ::c_ulonglong,
136 pub r11: ::c_ulonglong,
137 pub r10: ::c_ulonglong,
138 pub r9: ::c_ulonglong,
139 pub r8: ::c_ulonglong,
140 pub rax: ::c_ulonglong,
141 pub rcx: ::c_ulonglong,
142 pub rdx: ::c_ulonglong,
143 pub rsi: ::c_ulonglong,
144 pub rdi: ::c_ulonglong,
145 pub orig_rax: ::c_ulonglong,
146 pub rip: ::c_ulonglong,
147 pub cs: ::c_ulonglong,
148 pub eflags: ::c_ulonglong,
149 pub rsp: ::c_ulonglong,
150 pub ss: ::c_ulonglong,
151 pub fs_base: ::c_ulonglong,
152 pub gs_base: ::c_ulonglong,
153 pub ds: ::c_ulonglong,
154 pub es: ::c_ulonglong,
155 pub fs: ::c_ulonglong,
156 pub gs: ::c_ulonglong,
157 }
158
159 pub struct user {
160 pub regs: user_regs_struct,
161 pub u_fpvalid: ::c_int,
162 pub i387: user_fpregs_struct,
163 pub u_tsize: ::c_ulonglong,
164 pub u_dsize: ::c_ulonglong,
165 pub u_ssize: ::c_ulonglong,
166 pub start_code: ::c_ulonglong,
167 pub start_stack: ::c_ulonglong,
168 pub signal: ::c_longlong,
169 __reserved: ::c_int,
170 #[cfg(target_pointer_width = "32")]
171 __pad1: u32,
172 pub u_ar0: *mut user_regs_struct,
173 #[cfg(target_pointer_width = "32")]
174 __pad2: u32,
175 pub u_fpstate: *mut user_fpregs_struct,
176 pub magic: ::c_ulonglong,
177 pub u_comm: [::c_char; 32],
178 pub u_debugreg: [::c_ulonglong; 8],
179 }
180
181 pub struct mcontext_t {
182 pub gregs: [greg_t; 23],
183 pub fpregs: *mut _libc_fpstate,
184 __private: [u64; 8],
185 }
186
187 pub struct ucontext_t {
188 pub uc_flags: ::c_ulong,
189 pub uc_link: *mut ucontext_t,
190 pub uc_stack: ::stack_t,
191 pub uc_mcontext: mcontext_t,
192 pub uc_sigmask: ::sigset_t,
193 __private: [u8; 512],
194 }
195
196 pub struct ipc_perm {
197 pub __key: ::key_t,
198 pub uid: ::uid_t,
199 pub gid: ::gid_t,
200 pub cuid: ::uid_t,
201 pub cgid: ::gid_t,
202 pub mode: ::c_ushort,
203 __pad1: ::c_ushort,
204 pub __seq: ::c_ushort,
205 __pad2: ::c_ushort,
206 __unused1: u64,
207 __unused2: u64
208 }
209
210 pub struct shmid_ds {
211 pub shm_perm: ::ipc_perm,
212 pub shm_segsz: ::size_t,
213 pub shm_atime: ::time_t,
214 pub shm_dtime: ::time_t,
215 pub shm_ctime: ::time_t,
216 pub shm_cpid: ::pid_t,
217 pub shm_lpid: ::pid_t,
218 pub shm_nattch: ::shmatt_t,
219 __unused4: u64,
220 __unused5: u64
221 }
222
223 pub struct termios2 {
224 pub c_iflag: ::tcflag_t,
225 pub c_oflag: ::tcflag_t,
226 pub c_cflag: ::tcflag_t,
227 pub c_lflag: ::tcflag_t,
228 pub c_line: ::cc_t,
229 pub c_cc: [::cc_t; 19],
230 pub c_ispeed: ::speed_t,
231 pub c_ospeed: ::speed_t,
232 }
233}
234
235pub const TIOCGSOFTCAR: ::c_ulong = 0x5419;
236pub const TIOCSSOFTCAR: ::c_ulong = 0x541A;
237
238pub const RLIMIT_NOFILE: ::c_int = 7;
239pub const RLIMIT_NPROC: ::c_int = 6;
240
241pub const O_APPEND: ::c_int = 1024;
242pub const O_CREAT: ::c_int = 64;
243pub const O_EXCL: ::c_int = 128;
244pub const O_NOCTTY: ::c_int = 256;
245pub const O_NONBLOCK: ::c_int = 2048;
246pub const O_SYNC: ::c_int = 1052672;
247pub const O_RSYNC: ::c_int = 1052672;
248pub const O_DSYNC: ::c_int = 4096;
249pub const O_FSYNC: ::c_int = 0x101000;
250pub const O_NOATIME: ::c_int = 0o1000000;
251pub const O_PATH: ::c_int = 0o10000000;
252pub const O_TMPFILE: ::c_int = 0o20000000 | O_DIRECTORY;
253
254pub const MAP_GROWSDOWN: ::c_int = 0x0100;
255
256pub const EDEADLK: ::c_int = 35;
257pub const ENAMETOOLONG: ::c_int = 36;
258pub const ENOLCK: ::c_int = 37;
259pub const ENOSYS: ::c_int = 38;
260pub const ENOTEMPTY: ::c_int = 39;
261pub const ELOOP: ::c_int = 40;
262pub const ENOMSG: ::c_int = 42;
263pub const EIDRM: ::c_int = 43;
264pub const ECHRNG: ::c_int = 44;
265pub const EL2NSYNC: ::c_int = 45;
266pub const EL3HLT: ::c_int = 46;
267pub const EL3RST: ::c_int = 47;
268pub const ELNRNG: ::c_int = 48;
269pub const EUNATCH: ::c_int = 49;
270pub const ENOCSI: ::c_int = 50;
271pub const EL2HLT: ::c_int = 51;
272pub const EBADE: ::c_int = 52;
273pub const EBADR: ::c_int = 53;
274pub const EXFULL: ::c_int = 54;
275pub const ENOANO: ::c_int = 55;
276pub const EBADRQC: ::c_int = 56;
277pub const EBADSLT: ::c_int = 57;
278pub const EMULTIHOP: ::c_int = 72;
279pub const EOVERFLOW: ::c_int = 75;
280pub const ENOTUNIQ: ::c_int = 76;
281pub const EBADFD: ::c_int = 77;
282pub const EBADMSG: ::c_int = 74;
283pub const EREMCHG: ::c_int = 78;
284pub const ELIBACC: ::c_int = 79;
285pub const ELIBBAD: ::c_int = 80;
286pub const ELIBSCN: ::c_int = 81;
287pub const ELIBMAX: ::c_int = 82;
288pub const ELIBEXEC: ::c_int = 83;
289pub const EILSEQ: ::c_int = 84;
290pub const ERESTART: ::c_int = 85;
291pub const ESTRPIPE: ::c_int = 86;
292pub const EUSERS: ::c_int = 87;
293pub const ENOTSOCK: ::c_int = 88;
294pub const EDESTADDRREQ: ::c_int = 89;
295pub const EMSGSIZE: ::c_int = 90;
296pub const EPROTOTYPE: ::c_int = 91;
297pub const ENOPROTOOPT: ::c_int = 92;
298pub const EPROTONOSUPPORT: ::c_int = 93;
299pub const ESOCKTNOSUPPORT: ::c_int = 94;
300pub const EOPNOTSUPP: ::c_int = 95;
301pub const EPFNOSUPPORT: ::c_int = 96;
302pub const EAFNOSUPPORT: ::c_int = 97;
303pub const EADDRINUSE: ::c_int = 98;
304pub const EADDRNOTAVAIL: ::c_int = 99;
305pub const ENETDOWN: ::c_int = 100;
306pub const ENETUNREACH: ::c_int = 101;
307pub const ENETRESET: ::c_int = 102;
308pub const ECONNABORTED: ::c_int = 103;
309pub const ECONNRESET: ::c_int = 104;
310pub const ENOBUFS: ::c_int = 105;
311pub const EISCONN: ::c_int = 106;
312pub const ENOTCONN: ::c_int = 107;
313pub const ESHUTDOWN: ::c_int = 108;
314pub const ETOOMANYREFS: ::c_int = 109;
315pub const ETIMEDOUT: ::c_int = 110;
316pub const ECONNREFUSED: ::c_int = 111;
317pub const EHOSTDOWN: ::c_int = 112;
318pub const EHOSTUNREACH: ::c_int = 113;
319pub const EALREADY: ::c_int = 114;
320pub const EINPROGRESS: ::c_int = 115;
321pub const ESTALE: ::c_int = 116;
322pub const EDQUOT: ::c_int = 122;
323pub const ENOMEDIUM: ::c_int = 123;
324pub const EMEDIUMTYPE: ::c_int = 124;
325pub const ECANCELED: ::c_int = 125;
326pub const ENOKEY: ::c_int = 126;
327pub const EKEYEXPIRED: ::c_int = 127;
328pub const EKEYREVOKED: ::c_int = 128;
329pub const EKEYREJECTED: ::c_int = 129;
330pub const EOWNERDEAD: ::c_int = 130;
331pub const ENOTRECOVERABLE: ::c_int = 131;
332pub const EHWPOISON: ::c_int = 133;
333pub const ERFKILL: ::c_int = 132;
334
335pub const SOL_SOCKET: ::c_int = 1;
336
337pub const SO_REUSEADDR: ::c_int = 2;
338pub const SO_TYPE: ::c_int = 3;
339pub const SO_ERROR: ::c_int = 4;
340pub const SO_DONTROUTE: ::c_int = 5;
341pub const SO_BROADCAST: ::c_int = 6;
342pub const SO_SNDBUF: ::c_int = 7;
343pub const SO_RCVBUF: ::c_int = 8;
344pub const SO_SNDBUFFORCE: ::c_int = 32;
345pub const SO_RCVBUFFORCE: ::c_int = 33;
346pub const SO_KEEPALIVE: ::c_int = 9;
347pub const SO_OOBINLINE: ::c_int = 10;
348pub const SO_NO_CHECK: ::c_int = 11;
349pub const SO_PRIORITY: ::c_int = 12;
350pub const SO_LINGER: ::c_int = 13;
351pub const SO_BSDCOMPAT: ::c_int = 14;
352pub const SO_REUSEPORT: ::c_int = 15;
353pub const SO_PASSCRED: ::c_int = 16;
354pub const SO_PEERCRED: ::c_int = 17;
355pub const SO_RCVLOWAT: ::c_int = 18;
356pub const SO_SNDLOWAT: ::c_int = 19;
357pub const SO_RCVTIMEO: ::c_int = 20;
358pub const SO_SNDTIMEO: ::c_int = 21;
359pub const SO_SECURITY_AUTHENTICATION: ::c_int = 22;
360pub const SO_SECURITY_ENCRYPTION_TRANSPORT: ::c_int = 23;
361pub const SO_SECURITY_ENCRYPTION_NETWORK: ::c_int = 24;
362pub const SO_BINDTODEVICE: ::c_int = 25;
363pub const SO_ATTACH_FILTER: ::c_int = 26;
364pub const SO_DETACH_FILTER: ::c_int = 27;
365pub const SO_GET_FILTER: ::c_int = SO_ATTACH_FILTER;
366pub const SO_PEERNAME: ::c_int = 28;
367pub const SO_TIMESTAMP: ::c_int = 29;
368pub const SO_ACCEPTCONN: ::c_int = 30;
369pub const SO_PEERSEC: ::c_int = 31;
370pub const SO_PASSSEC: ::c_int = 34;
371pub const SO_TIMESTAMPNS: ::c_int = 35;
372pub const SCM_TIMESTAMPNS: ::c_int = SO_TIMESTAMPNS;
373pub const SO_MARK: ::c_int = 36;
374pub const SO_TIMESTAMPING: ::c_int = 37;
375pub const SCM_TIMESTAMPING: ::c_int = SO_TIMESTAMPING;
376pub const SO_PROTOCOL: ::c_int = 38;
377pub const SO_DOMAIN: ::c_int = 39;
378pub const SO_RXQ_OVFL: ::c_int = 40;
379pub const SO_WIFI_STATUS: ::c_int = 41;
380pub const SCM_WIFI_STATUS: ::c_int = SO_WIFI_STATUS;
381pub const SO_PEEK_OFF: ::c_int = 42;
382pub const SO_NOFCS: ::c_int = 43;
383pub const SO_LOCK_FILTER: ::c_int = 44;
384pub const SO_SELECT_ERR_QUEUE: ::c_int = 45;
385pub const SO_BUSY_POLL: ::c_int = 46;
386pub const SO_MAX_PACING_RATE: ::c_int = 47;
387pub const SO_BPF_EXTENSIONS: ::c_int = 48;
388pub const SO_INCOMING_CPU: ::c_int = 49;
389pub const SO_ATTACH_BPF: ::c_int = 50;
390pub const SO_DETACH_BPF: ::c_int = SO_DETACH_FILTER;
391
392pub const SA_ONSTACK: ::c_int = 0x08000000;
393pub const SA_SIGINFO: ::c_int = 0x00000004;
394pub const SA_NOCLDWAIT: ::c_int = 0x00000002;
395
396pub const SIGCHLD: ::c_int = 17;
397pub const SIGBUS: ::c_int = 7;
398pub const SIGUSR1: ::c_int = 10;
399pub const SIGUSR2: ::c_int = 12;
400pub const SIGCONT: ::c_int = 18;
401pub const SIGSTOP: ::c_int = 19;
402pub const SIGTSTP: ::c_int = 20;
403pub const SIGURG: ::c_int = 23;
404pub const SIGIO: ::c_int = 29;
405pub const SIGSYS: ::c_int = 31;
406pub const SIGSTKFLT: ::c_int = 16;
407pub const SIGUNUSED: ::c_int = 31;
408pub const SIGPOLL: ::c_int = 29;
409pub const SIGPWR: ::c_int = 30;
410pub const SIG_SETMASK: ::c_int = 2;
411pub const SIG_BLOCK: ::c_int = 0x000000;
412pub const SIG_UNBLOCK: ::c_int = 0x01;
413
414pub const POLLWRNORM: ::c_short = 0x100;
415pub const POLLWRBAND: ::c_short = 0x200;
416
417pub const O_ASYNC: ::c_int = 0x2000;
418pub const O_NDELAY: ::c_int = 0x800;
419
420pub const PTRACE_DETACH: ::c_uint = 17;
421
422pub const EFD_NONBLOCK: ::c_int = 0x800;
423
424pub const F_GETLK: ::c_int = 5;
425pub const F_GETOWN: ::c_int = 9;
426pub const F_SETOWN: ::c_int = 8;
427pub const F_SETLK: ::c_int = 6;
428pub const F_SETLKW: ::c_int = 7;
429
430pub const F_RDLCK: ::c_int = 0;
431pub const F_WRLCK: ::c_int = 1;
432pub const F_UNLCK: ::c_int = 2;
433
434pub const SFD_NONBLOCK: ::c_int = 0x0800;
435
436pub const TIOCEXCL: ::c_ulong = 0x540C;
437pub const TIOCNXCL: ::c_ulong = 0x540D;
438pub const TIOCSCTTY: ::c_ulong = 0x540E;
439pub const TIOCSTI: ::c_ulong = 0x5412;
440pub const TIOCMGET: ::c_ulong = 0x5415;
441pub const TIOCMBIS: ::c_ulong = 0x5416;
442pub const TIOCMBIC: ::c_ulong = 0x5417;
443pub const TIOCMSET: ::c_ulong = 0x5418;
444pub const TIOCCONS: ::c_ulong = 0x541D;
445
446pub const SFD_CLOEXEC: ::c_int = 0x080000;
447
448pub const NCCS: usize = 32;
449
450pub const O_TRUNC: ::c_int = 512;
451
452pub const O_CLOEXEC: ::c_int = 0x80000;
453
454pub const EBFONT: ::c_int = 59;
455pub const ENOSTR: ::c_int = 60;
456pub const ENODATA: ::c_int = 61;
457pub const ETIME: ::c_int = 62;
458pub const ENOSR: ::c_int = 63;
459pub const ENONET: ::c_int = 64;
460pub const ENOPKG: ::c_int = 65;
461pub const EREMOTE: ::c_int = 66;
462pub const ENOLINK: ::c_int = 67;
463pub const EADV: ::c_int = 68;
464pub const ESRMNT: ::c_int = 69;
465pub const ECOMM: ::c_int = 70;
466pub const EPROTO: ::c_int = 71;
467pub const EDOTDOT: ::c_int = 73;
468
469pub const SA_NODEFER: ::c_int = 0x40000000;
470pub const SA_RESETHAND: ::c_int = 0x80000000;
471pub const SA_RESTART: ::c_int = 0x10000000;
472pub const SA_NOCLDSTOP: ::c_int = 0x00000001;
473
474pub const EPOLL_CLOEXEC: ::c_int = 0x80000;
475
476pub const EFD_CLOEXEC: ::c_int = 0x80000;
477
478pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
479pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
480
481pub const O_DIRECT: ::c_int = 0x4000;
482pub const O_DIRECTORY: ::c_int = 0x10000;
483pub const O_NOFOLLOW: ::c_int = 0x20000;
484
485pub const MAP_LOCKED: ::c_int = 0x02000;
486pub const MAP_NORESERVE: ::c_int = 0x04000;
487pub const MAP_32BIT: ::c_int = 0x0040;
488
489pub const EDEADLOCK: ::c_int = 35;
490
491pub const FIOCLEX: ::c_ulong = 0x5451;
492pub const FIONBIO: ::c_ulong = 0x5421;
493
494pub const PTRACE_GETFPREGS: ::c_uint = 14;
495pub const PTRACE_SETFPREGS: ::c_uint = 15;
496pub const PTRACE_GETFPXREGS: ::c_uint = 18;
497pub const PTRACE_SETFPXREGS: ::c_uint = 19;
498pub const PTRACE_GETREGS: ::c_uint = 12;
499pub const PTRACE_SETREGS: ::c_uint = 13;
500pub const PTRACE_PEEKSIGINFO_SHARED: ::c_uint = 1;
501
502pub const MCL_CURRENT: ::c_int = 0x0001;
503pub const MCL_FUTURE: ::c_int = 0x0002;
504
505pub const SIGSTKSZ: ::size_t = 8192;
506pub const MINSIGSTKSZ: ::size_t = 2048;
507pub const CBAUD: ::tcflag_t = 0o0010017;
508pub const TAB1: ::c_int = 0x00000800;
509pub const TAB2: ::c_int = 0x00001000;
510pub const TAB3: ::c_int = 0x00001800;
511pub const CR1: ::c_int = 0x00000200;
512pub const CR2: ::c_int = 0x00000400;
513pub const CR3: ::c_int = 0x00000600;
514pub const FF1: ::c_int = 0x00008000;
515pub const BS1: ::c_int = 0x00002000;
516pub const VT1: ::c_int = 0x00004000;
517pub const VWERASE: usize = 14;
518pub const VREPRINT: usize = 12;
519pub const VSUSP: usize = 10;
520pub const VSTART: usize = 8;
521pub const VSTOP: usize = 9;
522pub const VDISCARD: usize = 13;
523pub const VTIME: usize = 5;
524pub const IXON: ::tcflag_t = 0x00000400;
525pub const IXOFF: ::tcflag_t = 0x00001000;
526pub const ONLCR: ::tcflag_t = 0x4;
527pub const CSIZE: ::tcflag_t = 0x00000030;
528pub const CS6: ::tcflag_t = 0x00000010;
529pub const CS7: ::tcflag_t = 0x00000020;
530pub const CS8: ::tcflag_t = 0x00000030;
531pub const CSTOPB: ::tcflag_t = 0x00000040;
532pub const CREAD: ::tcflag_t = 0x00000080;
533pub const PARENB: ::tcflag_t = 0x00000100;
534pub const PARODD: ::tcflag_t = 0x00000200;
535pub const HUPCL: ::tcflag_t = 0x00000400;
536pub const CLOCAL: ::tcflag_t = 0x00000800;
537pub const ECHOKE: ::tcflag_t = 0x00000800;
538pub const ECHOE: ::tcflag_t = 0x00000010;
539pub const ECHOK: ::tcflag_t = 0x00000020;
540pub const ECHONL: ::tcflag_t = 0x00000040;
541pub const ECHOPRT: ::tcflag_t = 0x00000400;
542pub const ECHOCTL: ::tcflag_t = 0x00000200;
543pub const ISIG: ::tcflag_t = 0x00000001;
544pub const ICANON: ::tcflag_t = 0x00000002;
545pub const PENDIN: ::tcflag_t = 0x00004000;
546pub const NOFLSH: ::tcflag_t = 0x00000080;
547pub const CIBAUD: ::tcflag_t = 0o02003600000;
548pub const CBAUDEX: ::tcflag_t = 0o010000;
549pub const VSWTC: usize = 7;
550pub const OLCUC: ::tcflag_t = 0o000002;
551pub const NLDLY: ::tcflag_t = 0o000400;
552pub const CRDLY: ::tcflag_t = 0o003000;
553pub const TABDLY: ::tcflag_t = 0o014000;
554pub const BSDLY: ::tcflag_t = 0o020000;
555pub const FFDLY: ::tcflag_t = 0o100000;
556pub const VTDLY: ::tcflag_t = 0o040000;
557pub const XTABS: ::tcflag_t = 0o014000;
558
559pub const B0: ::speed_t = 0o000000;
560pub const B50: ::speed_t = 0o000001;
561pub const B75: ::speed_t = 0o000002;
562pub const B110: ::speed_t = 0o000003;
563pub const B134: ::speed_t = 0o000004;
564pub const B150: ::speed_t = 0o000005;
565pub const B200: ::speed_t = 0o000006;
566pub const B300: ::speed_t = 0o000007;
567pub const B600: ::speed_t = 0o000010;
568pub const B1200: ::speed_t = 0o000011;
569pub const B1800: ::speed_t = 0o000012;
570pub const B2400: ::speed_t = 0o000013;
571pub const B4800: ::speed_t = 0o000014;
572pub const B9600: ::speed_t = 0o000015;
573pub const B19200: ::speed_t = 0o000016;
574pub const B38400: ::speed_t = 0o000017;
575pub const EXTA: ::speed_t = B19200;
576pub const EXTB: ::speed_t = B38400;
577pub const BOTHER: ::speed_t = 0o010000;
578pub const B57600: ::speed_t = 0o010001;
579pub const B115200: ::speed_t = 0o010002;
580pub const B230400: ::speed_t = 0o010003;
581pub const B460800: ::speed_t = 0o010004;
582pub const B500000: ::speed_t = 0o010005;
583pub const B576000: ::speed_t = 0o010006;
584pub const B921600: ::speed_t = 0o010007;
585pub const B1000000: ::speed_t = 0o010010;
586pub const B1152000: ::speed_t = 0o010011;
587pub const B1500000: ::speed_t = 0o010012;
588pub const B2000000: ::speed_t = 0o010013;
589pub const B2500000: ::speed_t = 0o010014;
590pub const B3000000: ::speed_t = 0o010015;
591pub const B3500000: ::speed_t = 0o010016;
592pub const B4000000: ::speed_t = 0o010017;
593
594pub const VEOL: usize = 11;
595pub const VEOL2: usize = 16;
596pub const VMIN: usize = 6;
597pub const IEXTEN: ::tcflag_t = 0x00008000;
598pub const TOSTOP: ::tcflag_t = 0x00000100;
599pub const FLUSHO: ::tcflag_t = 0x00001000;
600pub const EXTPROC: ::tcflag_t = 0x00010000;
601pub const TCGETS: ::c_ulong = 0x5401;
602pub const TCSETS: ::c_ulong = 0x5402;
603pub const TCSETSW: ::c_ulong = 0x5403;
604pub const TCSETSF: ::c_ulong = 0x5404;
605pub const TCGETA: ::c_ulong = 0x5405;
606pub const TCSETA: ::c_ulong = 0x5406;
607pub const TCSETAW: ::c_ulong = 0x5407;
608pub const TCSETAF: ::c_ulong = 0x5408;
609pub const TCSBRK: ::c_ulong = 0x5409;
610pub const TCXONC: ::c_ulong = 0x540A;
611pub const TCFLSH: ::c_ulong = 0x540B;
612pub const TIOCINQ: ::c_ulong = 0x541B;
613pub const TIOCGPGRP: ::c_ulong = 0x540F;
614pub const TIOCSPGRP: ::c_ulong = 0x5410;
615pub const TIOCOUTQ: ::c_ulong = 0x5411;
616pub const TIOCGWINSZ: ::c_ulong = 0x5413;
617pub const TIOCSWINSZ: ::c_ulong = 0x5414;
618pub const FIONREAD: ::c_ulong = 0x541B;
619
620pub const R15: ::c_int = 0;
622pub const R14: ::c_int = 1;
623pub const R13: ::c_int = 2;
624pub const R12: ::c_int = 3;
625pub const RBP: ::c_int = 4;
626pub const RBX: ::c_int = 5;
627pub const R11: ::c_int = 6;
628pub const R10: ::c_int = 7;
629pub const R9: ::c_int = 8;
630pub const R8: ::c_int = 9;
631pub const RAX: ::c_int = 10;
632pub const RCX: ::c_int = 11;
633pub const RDX: ::c_int = 12;
634pub const RSI: ::c_int = 13;
635pub const RDI: ::c_int = 14;
636pub const ORIG_RAX: ::c_int = 15;
637pub const RIP: ::c_int = 16;
638pub const CS: ::c_int = 17;
639pub const EFLAGS: ::c_int = 18;
640pub const RSP: ::c_int = 19;
641pub const SS: ::c_int = 20;
642pub const FS_BASE: ::c_int = 21;
643pub const GS_BASE: ::c_int = 22;
644pub const DS: ::c_int = 23;
645pub const ES: ::c_int = 24;
646pub const FS: ::c_int = 25;
647pub const GS: ::c_int = 26;