Spawn.vala
authorAlan Knowles <alan@roojs.com>
Mon, 14 Aug 2017 02:59:10 +0000 (10:59 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 14 Aug 2017 02:59:10 +0000 (10:59 +0800)
Spawn.vala

index ad55e76..554655e 100644 (file)
@@ -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;