File tree Expand file tree Collapse file tree 8 files changed +10
-1
lines changed Expand file tree Collapse file tree 8 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1663,6 +1663,7 @@ fn test_android(target: &str) {
16631663
16641664 // FIXME: conflicts with standard C headers and is tested in
16651665 // `linux_termios.rs` below:
1666+ "IBSHIFT" => true ,
16661667 "TCGETS2" | "TCSETS2" | "TCSETSW2" | "TCSETSF2" => true ,
16671668
16681669 _ => false ,
@@ -2915,6 +2916,7 @@ fn test_linux(target: &str) {
29152916 // FIXME: conflicts with glibc headers and is tested in
29162917 // `linux_termios.rs` below:
29172918 | "BOTHER"
2919+ | "IBSHIFT"
29182920 | "TCGETS2"
29192921 | "TCSETS2"
29202922 | "TCSETSW2"
@@ -3274,7 +3276,7 @@ fn test_linux_like_apis(target: &str) {
32743276 . skip_static ( |_| true )
32753277 . skip_fn ( |_| true )
32763278 . skip_const ( |c| match c {
3277- "BOTHER" => false ,
3279+ "BOTHER" | "IBSHIFT" => false ,
32783280 "TCGETS2" | "TCSETS2" | "TCSETSW2" | "TCSETSF2" => false ,
32793281 _ => true ,
32803282 } )
Original file line number Diff line number Diff line change @@ -665,6 +665,7 @@ GRPQUOTA
665665HPFS_SUPER_MAGIC
666666HUGETLBFS_MAGIC
667667HUPCL
668+ IBSHIFT
668669ICANON
669670ICRNL
670671IEXTEN
Original file line number Diff line number Diff line change @@ -645,6 +645,7 @@ GLOB_NOSORT
645645GLOB_NOSPACE
646646GRND_NONBLOCK
647647GRND_RANDOM
648+ IBSHIFT
648649IFA_ADDRESS
649650IFA_ANYCAST
650651IFA_BROADCAST
Original file line number Diff line number Diff line change @@ -1538,6 +1538,7 @@ pub const B2500000: ::speed_t = 0o010014;
15381538pub const B3000000 : :: speed_t = 0o010015 ;
15391539pub const B3500000 : :: speed_t = 0o010016 ;
15401540pub const B4000000 : :: speed_t = 0o010017 ;
1541+ pub const IBSHIFT : :: tcflag_t = 16 ;
15411542
15421543pub const EAI_AGAIN : :: c_int = 2 ;
15431544pub const EAI_BADFLAGS : :: c_int = 3 ;
Original file line number Diff line number Diff line change @@ -134,3 +134,4 @@ pub const TIOCM_RI: ::c_int = TIOCM_RNG;
134134pub const TIOCM_DSR : :: c_int = 0x100 ;
135135
136136pub const BOTHER : :: speed_t = 0o010000 ;
137+ pub const IBSHIFT : :: tcflag_t = 16 ;
Original file line number Diff line number Diff line change @@ -130,3 +130,4 @@ pub const TIOCM_RI: ::c_int = TIOCM_RNG;
130130pub const TIOCM_DSR : :: c_int = 0x400 ;
131131
132132pub const BOTHER : :: speed_t = 0o010000 ;
133+ pub const IBSHIFT : :: tcflag_t = 16 ;
Original file line number Diff line number Diff line change @@ -108,3 +108,4 @@ pub const TIOCM_RI: ::c_int = TIOCM_RNG;
108108pub const TIOCM_DSR : :: c_int = 0x100 ;
109109
110110pub const BOTHER : :: speed_t = 0o0037 ;
111+ pub const IBSHIFT : :: tcflag_t = 16 ;
Original file line number Diff line number Diff line change @@ -122,3 +122,4 @@ pub const TIOCM_RI: ::c_int = TIOCM_RNG;
122122pub const TIOCM_DSR : :: c_int = 0x100 ;
123123
124124pub const BOTHER : :: speed_t = 0x1000 ;
125+ pub const IBSHIFT : :: tcflag_t = 16 ;
You can’t perform that action at this time.
0 commit comments