mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-13 20:50:08 +00:00
Add ADDRB from Linux 6.0 to bits/termios-c_cflag.h
Linux 6.0 adds a constant ADDRB, a termios c_cflag bit, to its include/uapi/asm-generic/termbits-common.h. Add it accordingly to glibc's bits/termios-c_cflag.h headers. As other constants in these headers are generally in octal, I converted the value to octal to match. As ADDRB isn't in a POSIX-reserved namespace, I made it conditional on __USE_MISC. Tested for x86_64.
This commit is contained in:
parent
8775479804
commit
b87a70e5e2
@ -33,3 +33,7 @@
|
||||
#define HUPCL 00040000
|
||||
|
||||
#define CLOCAL 00100000
|
||||
|
||||
#ifdef __USE_MISC
|
||||
# define ADDRB 04000000000
|
||||
#endif
|
||||
|
@ -32,3 +32,7 @@
|
||||
#define PARODD 0001000
|
||||
#define HUPCL 0002000
|
||||
#define CLOCAL 0004000
|
||||
|
||||
#ifdef __USE_MISC
|
||||
# define ADDRB 04000000000
|
||||
#endif
|
||||
|
@ -33,3 +33,7 @@
|
||||
#define HUPCL 00040000
|
||||
|
||||
#define CLOCAL 00100000
|
||||
|
||||
#ifdef __USE_MISC
|
||||
# define ADDRB 04000000000
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user