We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
stdio
panic-to-screen!
1 parent f664dc3 commit ea87446Copy full SHA for ea87446
library/std/src/sys/pal/xous/stdio.rs
@@ -125,9 +125,5 @@ pub fn panic_output() -> Option<impl io::Write> {
125
// Send the "We're panicking" message (1000).
126
try_scalar(log, LogScalar::BeginPanic.into()).ok();
127
128
- // This is will fail in the case that the connection table is full, or if the
129
- // graphics server is not running. Most servers do not already have this connection.
130
- let gfx = try_connect("panic-to-screen!");
131
-
132
- Some(PanicWriter { log, gfx })
+ Some(PanicWriter { log, gfx: None })
133
}
0 commit comments