diff options
author | bors <bors@rust-lang.org> | 2019-05-29 19:52:27 +0000 |
---|---|---|
committer | bors <bors@rust-lang.org> | 2019-05-29 19:52:27 +0000 |
commit | 0e39a5432f3b2d94077efe4f35da0799383c3fd3 (patch) | |
tree | f5eb0a00e3688fc9646147c041ee9a71c2e2b3b8 /src/unix/notbsd/linux/other/b32/arm.rs | |
parent | 0e702c1b4e2e56788e8b67d3efd9c242807c3d4b (diff) | |
parent | 706b101cf8f8841cfda65ddfea46992a2fc9178a (diff) | |
download | rust-libc-0.2.56.tar.gz |
Auto merge of #1380 - gnzlbg:missing_tiors485, r=gnzlbg0.2.56
Add missing TIOCGRS485, TIOCSRS485 constants to Linux
Closes #1094 .
Diffstat (limited to 'src/unix/notbsd/linux/other/b32/arm.rs')
-rw-r--r-- | src/unix/notbsd/linux/other/b32/arm.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/unix/notbsd/linux/other/b32/arm.rs b/src/unix/notbsd/linux/other/b32/arm.rs index d058fc451e..a2d190d67c 100644 --- a/src/unix/notbsd/linux/other/b32/arm.rs +++ b/src/unix/notbsd/linux/other/b32/arm.rs @@ -252,6 +252,8 @@ pub const TIOCSPGRP: ::c_ulong = 0x5410; pub const TIOCOUTQ: ::c_ulong = 0x5411; pub const TIOCGWINSZ: ::c_ulong = 0x5413; pub const TIOCSWINSZ: ::c_ulong = 0x5414; +pub const TIOCGRS485: ::c_int = 0x542E; +pub const TIOCSRS485: ::c_int = 0x542F; pub const FIONREAD: ::c_ulong = 0x541B; // Syscall table |