diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-11-03 10:39:39 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-11-10 01:37:10 -0800 |
| commit | 30c885ea52458b361bb8f215c17c384743e6851a (patch) | |
| tree | 71ca222f9536fd2344ee37562848a25954b4198a /src/librustuv/process.rs | |
| parent | 3851f908d16b55dfe69d5a423ecbef4cd224fae2 (diff) | |
| download | rust-30c885ea52458b361bb8f215c17c384743e6851a.tar.gz rust-30c885ea52458b361bb8f215c17c384743e6851a.zip | |
uv: Remove lots of uv/C++ wrappers
Diffstat (limited to 'src/librustuv/process.rs')
| -rw-r--r-- | src/librustuv/process.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustuv/process.rs b/src/librustuv/process.rs index 2d746e329f4..ce281b656d3 100644 --- a/src/librustuv/process.rs +++ b/src/librustuv/process.rs @@ -94,7 +94,7 @@ impl Process { }; match unsafe { - uvll::spawn(loop_.native_handle(), **self, options) + uvll::uv_spawn(loop_.native_handle(), **self, options) } { 0 => { (*self).get_watcher_data().exit_cb = Some(exit_cb.take()); @@ -111,7 +111,7 @@ impl Process { /// This is a wrapper around `uv_process_kill` pub fn kill(&self, signum: int) -> Result<(), UvError> { match unsafe { - uvll::process_kill(self.native_handle(), signum as libc::c_int) + uvll::uv_process_kill(self.native_handle(), signum as libc::c_int) } { 0 => Ok(()), err => Err(UvError(err)) |
