Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libc-test/semver/apple.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1448,6 +1448,7 @@ TIOCEXCL
TIOCEXT
TIOCFLUSH
TIOCGDRAINWAIT
TIOCGETA
TIOCGETD
TIOCGPGRP
TIOCIXOFF
Expand Down Expand Up @@ -1492,6 +1493,9 @@ TIOCSCONS
TIOCSCTTY
TIOCSDRAINWAIT
TIOCSDTR
TIOCSETA
TIOCSETAF
TIOCSETAW
TIOCSETD
TIOCSIG
TIOCSPGRP
Expand Down
4 changes: 4 additions & 0 deletions src/unix/bsd/apple/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3150,6 +3150,10 @@ pub const TIOCDSIMICROCODE: c_uint = 0x20007455;
pub const TIOCPTYGRANT: c_uint = 0x20007454;
pub const TIOCPTYGNAME: c_uint = 0x40807453;
pub const TIOCPTYUNLK: c_uint = 0x20007452;
pub const TIOCGETA: c_ulong = 0x40487413;
pub const TIOCSETA: c_ulong = 0x80487414;
pub const TIOCSETAW: c_ulong = 0x80487415;
pub const TIOCSETAF: c_ulong = 0x80487416;

pub const BIOCGRSIG: c_ulong = 0x40044272;
pub const BIOCSRSIG: c_ulong = 0x80044273;
Expand Down
Loading