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) {
1663
1663
1664
1664
// FIXME: conflicts with standard C headers and is tested in
1665
1665
// `linux_termios.rs` below:
1666
+ "IBSHIFT" => true ,
1666
1667
"TCGETS2" | "TCSETS2" | "TCSETSW2" | "TCSETSF2" => true ,
1667
1668
1668
1669
_ => false ,
@@ -2915,6 +2916,7 @@ fn test_linux(target: &str) {
2915
2916
// FIXME: conflicts with glibc headers and is tested in
2916
2917
// `linux_termios.rs` below:
2917
2918
| "BOTHER"
2919
+ | "IBSHIFT"
2918
2920
| "TCGETS2"
2919
2921
| "TCSETS2"
2920
2922
| "TCSETSW2"
@@ -3274,7 +3276,7 @@ fn test_linux_like_apis(target: &str) {
3274
3276
. skip_static ( |_| true )
3275
3277
. skip_fn ( |_| true )
3276
3278
. skip_const ( |c| match c {
3277
- "BOTHER" => false ,
3279
+ "BOTHER" | "IBSHIFT" => false ,
3278
3280
"TCGETS2" | "TCSETS2" | "TCSETSW2" | "TCSETSF2" => false ,
3279
3281
_ => true ,
3280
3282
} )
Original file line number Diff line number Diff line change @@ -665,6 +665,7 @@ GRPQUOTA
665
665
HPFS_SUPER_MAGIC
666
666
HUGETLBFS_MAGIC
667
667
HUPCL
668
+ IBSHIFT
668
669
ICANON
669
670
ICRNL
670
671
IEXTEN
Original file line number Diff line number Diff line change @@ -645,6 +645,7 @@ GLOB_NOSORT
645
645
GLOB_NOSPACE
646
646
GRND_NONBLOCK
647
647
GRND_RANDOM
648
+ IBSHIFT
648
649
IFA_ADDRESS
649
650
IFA_ANYCAST
650
651
IFA_BROADCAST
Original file line number Diff line number Diff line change @@ -1538,6 +1538,7 @@ pub const B2500000: ::speed_t = 0o010014;
1538
1538
pub const B3000000 : :: speed_t = 0o010015 ;
1539
1539
pub const B3500000 : :: speed_t = 0o010016 ;
1540
1540
pub const B4000000 : :: speed_t = 0o010017 ;
1541
+ pub const IBSHIFT : :: tcflag_t = 16 ;
1541
1542
1542
1543
pub const EAI_AGAIN : :: c_int = 2 ;
1543
1544
pub 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;
134
134
pub const TIOCM_DSR : :: c_int = 0x100 ;
135
135
136
136
pub 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;
130
130
pub const TIOCM_DSR : :: c_int = 0x400 ;
131
131
132
132
pub 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;
108
108
pub const TIOCM_DSR : :: c_int = 0x100 ;
109
109
110
110
pub 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;
122
122
pub const TIOCM_DSR : :: c_int = 0x100 ;
123
123
124
124
pub const BOTHER : :: speed_t = 0x1000 ;
125
+ pub const IBSHIFT : :: tcflag_t = 16 ;
You can’t perform that action at this time.
0 commit comments