Skip to content

Commit dfbc1f7

Browse files
committed
stdio: Document no support for writing to non-blocking stdio/stderr
Printing to stdio/stderr that have been opened with non-blocking (O_NONBLOCK in linux) can result in an error, which is not handled by std::io module causing a panic. Signed-off-by: Usama Arif <[email protected]>
1 parent e7c7aa7 commit dfbc1f7

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

library/std/src/io/stdio.rs

+3
Original file line numberDiff line numberDiff line change
@@ -992,6 +992,9 @@ pub fn set_output_capture(sink: Option<LocalStream>) -> Option<LocalStream> {
992992
/// the global stream.
993993
///
994994
/// However, if the actual I/O causes an error, this function does panic.
995+
///
996+
/// Writing to non-blocking stdout/stderr can cause an error, which will lead
997+
/// this function to panic.
995998
fn print_to<T>(args: fmt::Arguments<'_>, global_s: fn() -> T, label: &str)
996999
where
9971000
T: Write,

library/std/src/macros.rs

+12
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ macro_rules! panic {
4949
///
5050
/// Panics if writing to `io::stdout()` fails.
5151
///
52+
/// Writing to non-blocking stdout can cause an error, which will lead
53+
/// this macro to panic.
54+
///
5255
/// # Examples
5356
///
5457
/// ```
@@ -107,6 +110,9 @@ macro_rules! print {
107110
///
108111
/// Panics if writing to [`io::stdout`] fails.
109112
///
113+
/// Writing to non-blocking stdout can cause an error, which will lead
114+
/// this macro to panic.
115+
///
110116
/// [`io::stdout`]: crate::io::stdout
111117
///
112118
/// # Examples
@@ -147,6 +153,9 @@ macro_rules! println {
147153
///
148154
/// Panics if writing to `io::stderr` fails.
149155
///
156+
/// Writing to non-blocking stdout can cause an error, which will lead
157+
/// this macro to panic.
158+
///
150159
/// # Examples
151160
///
152161
/// ```
@@ -179,6 +188,9 @@ macro_rules! eprint {
179188
///
180189
/// Panics if writing to `io::stderr` fails.
181190
///
191+
/// Writing to non-blocking stdout can cause an error, which will lead
192+
/// this macro to panic.
193+
///
182194
/// # Examples
183195
///
184196
/// ```

0 commit comments

Comments
 (0)