File tree Expand file tree Collapse file tree 16 files changed +32
-0
lines changed Expand file tree Collapse file tree 16 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -412,6 +412,8 @@ pub const AT_REMOVEDIR: ::c_int = 2;
412
412
pub const AT_EACCESS : :: c_int = 4 ;
413
413
pub const AT_SYMLINK_FOLLOW : :: c_int = 8 ;
414
414
415
+ pub const VCHECKPT : usize = 19 ;
416
+
415
417
extern {
416
418
pub fn mprotect ( addr : * mut :: c_void , len : :: size_t , prot : :: c_int )
417
419
-> :: c_int ;
Original file line number Diff line number Diff line change @@ -861,6 +861,7 @@ pub const EXTB: speed_t = 38400;
861
861
pub const SEM_FAILED : * mut sem_t = 0 as * mut sem_t ;
862
862
863
863
pub const CRTSCTS : :: tcflag_t = 0x00030000 ;
864
+ pub const VERASE2 : usize = 7 ;
864
865
pub const OCRNL : :: tcflag_t = 0x10 ;
865
866
pub const ONOCR : :: tcflag_t = 0x20 ;
866
867
pub const ONLRET : :: tcflag_t = 0x40 ;
Original file line number Diff line number Diff line change @@ -233,12 +233,15 @@ pub const VREPRINT: usize = 6;
233
233
pub const VINTR : usize = 8 ;
234
234
pub const VQUIT : usize = 9 ;
235
235
pub const VSUSP : usize = 10 ;
236
+ pub const VDSUSP : usize = 11 ;
236
237
pub const VSTART : usize = 12 ;
237
238
pub const VSTOP : usize = 13 ;
238
239
pub const VLNEXT : usize = 14 ;
239
240
pub const VDISCARD : usize = 15 ;
240
241
pub const VMIN : usize = 16 ;
241
242
pub const VTIME : usize = 17 ;
243
+ pub const VSTATUS : usize = 18 ;
244
+ pub const _POSIX_VDISABLE: :: cc_t = 0xff ;
242
245
pub const IGNBRK : :: tcflag_t = 0x00000001 ;
243
246
pub const BRKINT : :: tcflag_t = 0x00000002 ;
244
247
pub const IGNPAR : :: tcflag_t = 0x00000004 ;
Original file line number Diff line number Diff line change @@ -686,6 +686,19 @@ pub const P_ALL: idtype_t = 0;
686
686
pub const P_PID : idtype_t = 1 ;
687
687
pub const P_PGID : idtype_t = 2 ;
688
688
689
+ pub const VINTR : usize = 0 ;
690
+ pub const VQUIT : usize = 1 ;
691
+ pub const VERASE : usize = 2 ;
692
+ pub const VKILL : usize = 3 ;
693
+ pub const VEOF : usize = 4 ;
694
+ pub const VEOL : usize = 5 ;
695
+ pub const VMIN : usize = 4 ;
696
+ pub const VTIME : usize = 5 ;
697
+ pub const VEOL2 : usize = 6 ;
698
+ pub const VSWTCH : usize = 7 ;
699
+ pub const VSTART : usize = 8 ;
700
+ pub const VSTOP : usize = 9 ;
701
+ pub const VSUSP : usize = 10 ;
689
702
pub const OLCUC : :: tcflag_t = 0o000002 ;
690
703
pub const OCRNL : :: tcflag_t = 0o000010 ;
691
704
pub const ONOCR : :: tcflag_t = 0o000020 ;
Original file line number Diff line number Diff line change @@ -626,6 +626,7 @@ pub const ISIG: ::tcflag_t = 0x00000001;
626
626
pub const ICANON : :: tcflag_t = 0x00000002 ;
627
627
pub const PENDIN : :: tcflag_t = 0x00004000 ;
628
628
pub const NOFLSH : :: tcflag_t = 0x00000080 ;
629
+ pub const VSWTC : usize = 7 ;
629
630
pub const OLCUC : :: tcflag_t = 0o000002 ;
630
631
pub const NLDLY : :: tcflag_t = 0o000400 ;
631
632
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -492,6 +492,7 @@ pub const PENDIN: ::tcflag_t = 0x00004000;
492
492
pub const NOFLSH : :: tcflag_t = 0x00000080 ;
493
493
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
494
494
pub const CBAUDEX : :: tcflag_t = 0o010000 ;
495
+ pub const VSWTC : usize = 7 ;
495
496
pub const OLCUC : :: tcflag_t = 0o000002 ;
496
497
pub const NLDLY : :: tcflag_t = 0o000400 ;
497
498
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -711,6 +711,8 @@ pub const ITIMER_PROF: ::c_int = 2;
711
711
pub const XATTR_CREATE : :: c_int = 0x1 ;
712
712
pub const XATTR_REPLACE : :: c_int = 0x2 ;
713
713
714
+ pub const _POSIX_VDISABLE: :: cc_t = 0 ;
715
+
714
716
// On Linux, libc doesn't define this constant, libattr does instead.
715
717
// We still define it for Linux as it's defined by libc on other platforms,
716
718
// and it's mentioned in the man pages for getxattr and setxattr.
Original file line number Diff line number Diff line change @@ -283,6 +283,7 @@ pub const NOFLSH: ::tcflag_t = 0x00000080;
283
283
pub const CMSPAR : :: tcflag_t = 0o10000000000 ;
284
284
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
285
285
pub const CBAUDEX : :: tcflag_t = 0o010000 ;
286
+ pub const VSWTC : usize = 7 ;
286
287
pub const OLCUC : :: tcflag_t = 0o000002 ;
287
288
pub const NLDLY : :: tcflag_t = 0o000400 ;
288
289
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ pub const PENDIN: ::tcflag_t = 0x00004000;
143
143
pub const NOFLSH : :: tcflag_t = 0x00000080 ;
144
144
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
145
145
pub const CBAUDEX : :: tcflag_t = 0o010000 ;
146
+ pub const VSWTC : usize = 7 ;
146
147
pub const OLCUC : :: tcflag_t = 0o000002 ;
147
148
pub const NLDLY : :: tcflag_t = 0o000400 ;
148
149
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ pub const ISIG: ::tcflag_t = 0x80;
144
144
pub const ICANON : :: tcflag_t = 0x100 ;
145
145
pub const PENDIN : :: tcflag_t = 0x20000000 ;
146
146
pub const NOFLSH : :: tcflag_t = 0x80000000 ;
147
+ pub const VSWTC : usize = 9 ;
147
148
pub const OLCUC : :: tcflag_t = 0o000004 ;
148
149
pub const NLDLY : :: tcflag_t = 0o001400 ;
149
150
pub const CRDLY : :: tcflag_t = 0o030000 ;
Original file line number Diff line number Diff line change @@ -249,6 +249,7 @@ pub const PENDIN: ::tcflag_t = 0x00004000;
249
249
pub const NOFLSH : :: tcflag_t = 0x00000080 ;
250
250
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
251
251
pub const CBAUDEX : :: tcflag_t = 0o010000 ;
252
+ pub const VSWTC : usize = 7 ;
252
253
pub const OLCUC : :: tcflag_t = 0o000002 ;
253
254
pub const NLDLY : :: tcflag_t = 0o000400 ;
254
255
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -387,6 +387,7 @@ pub const PENDIN: ::tcflag_t = 0x00004000;
387
387
pub const NOFLSH : :: tcflag_t = 0x00000080 ;
388
388
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
389
389
pub const CBAUDEX : :: tcflag_t = 0o010000 ;
390
+ pub const VSWTC : usize = 7 ;
390
391
pub const OLCUC : :: tcflag_t = 0o000002 ;
391
392
pub const NLDLY : :: tcflag_t = 0o000400 ;
392
393
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -383,6 +383,7 @@ pub const ISIG: ::tcflag_t = 0x80;
383
383
pub const ICANON : :: tcflag_t = 0x100 ;
384
384
pub const PENDIN : :: tcflag_t = 0x20000000 ;
385
385
pub const NOFLSH : :: tcflag_t = 0x80000000 ;
386
+ pub const VSWTC : usize = 9 ;
386
387
pub const OLCUC : :: tcflag_t = 0o000004 ;
387
388
pub const NLDLY : :: tcflag_t = 0o001400 ;
388
389
pub const CRDLY : :: tcflag_t = 0o030000 ;
Original file line number Diff line number Diff line change @@ -344,6 +344,7 @@ pub const PENDIN: ::tcflag_t = 0x4000;
344
344
pub const NOFLSH : :: tcflag_t = 0x80 ;
345
345
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
346
346
pub const CBAUDEX : :: tcflag_t = 0x00001000 ;
347
+ pub const VSWTC : usize = 7 ;
347
348
pub const OLCUC : :: tcflag_t = 0o000002 ;
348
349
pub const NLDLY : :: tcflag_t = 0o000400 ;
349
350
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -507,6 +507,7 @@ pub const PENDIN: ::tcflag_t = 0x00004000;
507
507
pub const NOFLSH : :: tcflag_t = 0x00000080 ;
508
508
pub const CIBAUD : :: tcflag_t = 0o02003600000 ;
509
509
pub const CBAUDEX : :: tcflag_t = 0o010000 ;
510
+ pub const VSWTC : usize = 7 ;
510
511
pub const OLCUC : :: tcflag_t = 0o000002 ;
511
512
pub const NLDLY : :: tcflag_t = 0o000400 ;
512
513
pub const CRDLY : :: tcflag_t = 0o003000 ;
Original file line number Diff line number Diff line change @@ -693,6 +693,7 @@ pub const SYS_gettid: ::c_long = 236;
693
693
pub const SYS_perf_event_open : :: c_long = 331 ;
694
694
695
695
pub const CMSPAR : :: tcflag_t = 0o10000000000 ;
696
+ pub const VSWTC : usize = 7 ;
696
697
pub const OLCUC : :: tcflag_t = 0o000002 ;
697
698
pub const NLDLY : :: tcflag_t = 0o000400 ;
698
699
pub const NL1 : :: tcflag_t = 0x00000100 ;
You can’t perform that action at this time.
0 commit comments