Remove signal handling.

Since signal handling was only implemented through librustuv, which is
now gone, there's no reason to even provide the API.

[breaking-change]
This commit is contained in:
Aaron Turon 2014-10-09 16:40:05 -07:00
parent 3a527f2b33
commit 16470cf01b
2 changed files with 0 additions and 6 deletions

View File

@ -301,8 +301,4 @@ fn tty_open(&mut self, fd: c_int, _readable: bool)
})
}
}
fn signal(&mut self, _signal: int, _cb: Box<rtio::Callback>)
-> IoResult<Box<rtio::RtioSignal + Send>> {
Err(unimpl())
}
}

View File

@ -233,8 +233,6 @@ fn spawn(&mut self, cfg: ProcessConfig)
fn pipe_open(&mut self, fd: c_int) -> IoResult<Box<RtioPipe + Send>>;
fn tty_open(&mut self, fd: c_int, readable: bool)
-> IoResult<Box<RtioTTY + Send>>;
fn signal(&mut self, signal: int, cb: Box<Callback + Send>)
-> IoResult<Box<RtioSignal + Send>>;
}
pub trait RtioTcpListener : RtioSocket {