summaryrefslogtreecommitdiff
path: root/src/sys/termios.rs
diff options
context:
space:
mode:
authorGreg V <greg@unrelenting.technology>2018-01-04 02:54:31 +0300
committerGreg V <greg@unrelenting.technology>2018-02-12 12:52:10 +0300
commitd1f49bf38f3aad0171db306a1e23884b3102a539 (patch)
treed543b342c65d9157fa947dbf7d647249b425ad2a /src/sys/termios.rs
parent5600cc40d5e558a6cd722b43fb708d9bd36e29a9 (diff)
downloadnix-d1f49bf38f3aad0171db306a1e23884b3102a539.zip
Add cfmakesane() on FreeBSD
Diffstat (limited to 'src/sys/termios.rs')
-rw-r--r--src/sys/termios.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/sys/termios.rs b/src/sys/termios.rs
index 356c7769..11cacd7c 100644
--- a/src/sys/termios.rs
+++ b/src/sys/termios.rs
@@ -1023,6 +1023,19 @@ pub fn cfmakeraw(termios: &mut Termios) {
termios.update_wrapper();
}
+/// Configures the port to "sane" mode (like the configuration of a newly created terminal) (see
+/// [tcsetattr(3)](https://www.freebsd.org/cgi/man.cgi?query=tcsetattr)).
+///
+/// Note that this is a non-standard function, available on FreeBSD.
+#[cfg(target_os = "freebsd")]
+pub fn cfmakesane(termios: &mut Termios) {
+ let inner_termios = unsafe { termios.get_libc_termios_mut() };
+ unsafe {
+ libc::cfmakesane(inner_termios);
+ }
+ termios.update_wrapper();
+}
+
/// Return the configuration of a port
/// [tcgetattr(3p)](http://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetattr.html)).
///