From: Alan Knowles Date: Mon, 14 Aug 2017 02:59:10 +0000 (+0800) Subject: Spawn.vala X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=566a765ad89c22cc6d003d64ebaed99fb2d4f297 Spawn.vala --- diff --git a/Spawn.vala b/Spawn.vala index ad55e762..554655e3 100644 --- a/Spawn.vala +++ b/Spawn.vala @@ -345,7 +345,7 @@ public class Spawn : Object this.ctx = new MainLoop (); this.ctx.run(); // wait fore exit? - print("main_loop done!"); + //print("main_loop done!"); } else { this.tidyup(); // tidyup get's called in main loop. } @@ -367,7 +367,7 @@ public class Spawn : Object private void tidyup() { - print("Tidyup\n"); + //print("Tidyup\n"); if (this.pid > -1) { Process.close_pid(this.pid); // hopefully kills it.. this.pid = -1; @@ -377,7 +377,7 @@ public class Spawn : Object if (this.out_ch != null) this.out_ch.shutdown(true); if (this.err_ch != null) this.err_ch.shutdown(true); } catch (Error e) { - // error shutting donw. + // error shutting down } // blank out channels this.in_ch = null;