Skip to content

Commit 3643f01

Browse files
committed
Move BOTHER flag to linux::arch::*
1 parent c5ecd84 commit 3643f01

File tree

26 files changed

+9
-21
lines changed

26 files changed

+9
-21
lines changed

libc-test/semver/TODO-linux.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# The following symbols are not not available in some combinations of
22
# musl/gnu/android and/or architecture.
3-
BOTHER
43
KEYCTL_CAPABILITIES
54
KEYCTL_CAPS0_BIG_KEY
65
KEYCTL_CAPS0_CAPABILITIES

libc-test/semver/linux-gnu-x86_64.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
BOTHER
21
KEYCTL_CAPABILITIES
32
KEYCTL_CAPS0_BIG_KEY
43
KEYCTL_CAPS0_CAPABILITIES

libc-test/semver/linux-i686.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ B2500000
22
B3000000
33
B3500000
44
B4000000
5-
BOTHER
65
CIBAUD
76
CS
87
DS

libc-test/semver/linux-powerpc.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ B2500000
22
B3000000
33
B3500000
44
B4000000
5-
BOTHER
65
KEYCTL_CAPABILITIES
76
KEYCTL_CAPS0_BIG_KEY
87
KEYCTL_CAPS0_CAPABILITIES

libc-test/semver/linux-powerpc64.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ B2500000
22
B3000000
33
B3500000
44
B4000000
5-
BOTHER
65
KEYCTL_CAPABILITIES
76
KEYCTL_CAPS0_BIG_KEY
87
KEYCTL_CAPS0_CAPABILITIES

libc-test/semver/linux-powerpc64le.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ B2500000
22
B3000000
33
B3500000
44
B4000000
5-
BOTHER
65
KEYCTL_CAPABILITIES
76
KEYCTL_CAPS0_BIG_KEY
87
KEYCTL_CAPS0_CAPABILITIES

libc-test/semver/linux-s390x.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ B2500000
22
B3000000
33
B3500000
44
B4000000
5-
BOTHER
65
CIBAUD
76
KEYCTL_CAPABILITIES
87
KEYCTL_CAPS0_BIG_KEY

libc-test/semver/linux-sparc64.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ B153600
22
B307200
33
B614400
44
B76800
5-
BOTHER
65
CIBAUD
76
KEYCTL_CAPABILITIES
87
KEYCTL_CAPS0_BIG_KEY

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ B460800
189189
B500000
190190
B576000
191191
B921600
192+
BOTHER
192193
BS0
193194
BS1
194195
BSDLY

src/unix/linux_like/linux/arch/generic/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,5 @@ pub const TIOCM_CD: ::c_int = TIOCM_CAR;
132132
pub const TIOCM_RNG: ::c_int = 0x080;
133133
pub const TIOCM_RI: ::c_int = TIOCM_RNG;
134134
pub const TIOCM_DSR: ::c_int = 0x100;
135+
136+
pub const BOTHER: ::speed_t = 0o010000;

0 commit comments

Comments
 (0)