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.
1 parent 153278f commit 49630b3Copy full SHA for 49630b3
src/libnative/io/mod.rs
@@ -301,8 +301,4 @@ impl rtio::IoFactory for IoFactory {
301
})
302
}
303
304
- fn signal(&mut self, _signal: int, _cb: Box<rtio::Callback>)
305
- -> IoResult<Box<rtio::RtioSignal + Send>> {
306
- Err(unimpl())
307
- }
308
src/librustrt/rtio.rs
@@ -233,8 +233,6 @@ pub trait IoFactory {
233
fn pipe_open(&mut self, fd: c_int) -> IoResult<Box<RtioPipe + Send>>;
234
fn tty_open(&mut self, fd: c_int, readable: bool)
235
-> IoResult<Box<RtioTTY + Send>>;
236
- fn signal(&mut self, signal: int, cb: Box<Callback + Send>)
237
- -> IoResult<Box<RtioSignal + Send>>;
238
239
240
pub trait RtioTcpListener : RtioSocket {
0 commit comments