We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is_write_vectored
1 parent 58c7a35 commit d4c0af6Copy full SHA for d4c0af6
src/libstd/sys/unix/stdio.rs
@@ -40,6 +40,7 @@ impl io::Read for Stdin {
40
ManuallyDrop::new(FileDesc::new(libc::STDIN_FILENO)).read_vectored(bufs)
41
}
42
43
+ #[cfg(not(target_arch = "xtensa"))]
44
#[inline]
45
fn is_read_vectored(&self) -> bool {
46
true
@@ -68,6 +69,7 @@ impl io::Write for Stdout {
68
69
ManuallyDrop::new(FileDesc::new(libc::STDOUT_FILENO)).write_vectored(bufs)
70
71
72
73
74
fn is_write_vectored(&self) -> bool {
75
0 commit comments