about summary refs log tree commit diff
path: root/src/libstd/sys/unix
diff options
context:
space:
mode:
authorJeremy Soller <jackpot51@gmail.com>2016-11-28 18:25:47 -0700
committerJeremy Soller <jackpot51@gmail.com>2016-11-28 18:25:47 -0700
commit1d0bba8224686d054378bcc4e853798d56fdfecf (patch)
treee50c33389112f9b43f8b4b2f443f6120518a663a /src/libstd/sys/unix
parent2ec21327f25e4646ce64a2e331bb4702cf96dc99 (diff)
downloadrust-1d0bba8224686d054378bcc4e853798d56fdfecf.tar.gz
rust-1d0bba8224686d054378bcc4e853798d56fdfecf.zip
Move stdout/err flush into sys
Diffstat (limited to 'src/libstd/sys/unix')
-rw-r--r--src/libstd/sys/unix/stdio.rs13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/stdio.rs b/src/libstd/sys/unix/stdio.rs
index 273341b1918..1002c60d303 100644
--- a/src/libstd/sys/unix/stdio.rs
+++ b/src/libstd/sys/unix/stdio.rs
@@ -43,6 +43,10 @@ impl Stdout {
         fd.into_raw();
         ret
     }
+
+    pub fn flush(&self) -> io::Result<()> {
+        Ok(())
+    }
 }
 
 impl Stderr {
@@ -54,6 +58,10 @@ impl Stderr {
         fd.into_raw();
         ret
     }
+
+    pub fn flush(&self) -> io::Result<()> {
+        Ok(())
+    }
 }
 
 // FIXME: right now this raw stderr handle is used in a few places because
@@ -63,7 +71,10 @@ impl io::Write for Stderr {
     fn write(&mut self, data: &[u8]) -> io::Result<usize> {
         Stderr::write(self, data)
     }
-    fn flush(&mut self) -> io::Result<()> { Ok(()) }
+    
+    fn flush(&mut self) -> io::Result<()> {
+        Stderr::flush(self)
+    }
 }
 
 pub const EBADF_ERR: i32 = ::libc::EBADF as i32;