diff options
| author | Kevin Ballard <kevin@sb.org> | 2014-05-04 00:21:44 -0700 |
|---|---|---|
| committer | Kevin Ballard <kevin@sb.org> | 2014-05-08 12:06:22 -0700 |
| commit | 1d57da783b150a84c7b4ead283483bdd48029abb (patch) | |
| tree | b477a60d63a15a62320bfc93bebb97d54cc6ab31 /src/libstd/rt | |
| parent | a99eff3fca670238bd7194dc83d8f4b968277dc6 (diff) | |
| download | rust-1d57da783b150a84c7b4ead283483bdd48029abb.tar.gz rust-1d57da783b150a84c7b4ead283483bdd48029abb.zip | |
Handle fallout in libnative
API Changes: - GetAddrInfoRequest::run() returns Result<Vec<..>, ..> - Process::spawn() returns Result(.., Vec<..>), ..>
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/rtio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/rtio.rs b/src/libstd/rt/rtio.rs index eaf194b89cb..ccde8d9c96a 100644 --- a/src/libstd/rt/rtio.rs +++ b/src/libstd/rt/rtio.rs @@ -191,7 +191,7 @@ pub trait IoFactory { fn timer_init(&mut self) -> IoResult<Box<RtioTimer:Send>>; fn spawn(&mut self, config: ProcessConfig) -> IoResult<(Box<RtioProcess:Send>, - ~[Option<Box<RtioPipe:Send>>])>; + Vec<Option<Box<RtioPipe:Send>>>)>; fn kill(&mut self, pid: libc::pid_t, signal: int) -> IoResult<()>; fn pipe_open(&mut self, fd: c_int) -> IoResult<Box<RtioPipe:Send>>; fn tty_open(&mut self, fd: c_int, readable: bool) |
