From 1c3e06f29ad59c084c00725bf7041c2af126b22d Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sun, 15 Nov 2015 21:21:23 -0300 Subject: Clean of zombie process. The spawn of process within the exec_cmd function now are handled by a new function (collect_zombies). For reference, this code was taken from the _zombie_ crate. --- Cargo.lock | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 4058f90..b881a57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,8 +2,8 @@ name = "dotwm" version = "0.1.0" dependencies = [ - "libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "x11 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "x11 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -11,6 +11,11 @@ name = "libc" version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "libc" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "pkg-config" version = "0.3.6" @@ -18,7 +23,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "x11" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -- cgit v1.2.3-54-g00ecf