From ea5a086bc07ad5bae1d61131680c0e8249dfcc6f Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 13 Jul 2010 12:41:25 +0800 Subject: [PATCH] jhbuild.js --- jhbuild.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jhbuild.js b/jhbuild.js index 67d4b27..b088626 100755 --- a/jhbuild.js +++ b/jhbuild.js @@ -233,7 +233,7 @@ function spawnlog (cwd, s, outfile, errfile) { GLib.SpawnFlags.DO_NOT_REAP_CHILD + GLib.SpawnFlags.SEARCH_PATH , null, null, ret); - var ctx = GLib.main_loop_new (null, false); + var ctx = new GLib.MailLoop.c_new (null, false); var started = false; GLib.child_watch_add(GLib.PRIORITY_DEFAULT, ret.child_pid, function(pid, status) { @@ -242,7 +242,7 @@ function spawnlog (cwd, s, outfile, errfile) { retval.done = true; if (started) { console.log("Ending LOOP"); - GLib.main_loop_quit(ctx); + ctx.quit(); } }); @@ -317,7 +317,7 @@ function spawnlog (cwd, s, outfile, errfile) { if (!retval.done) { started = true; console.log("STARTING LOOP"); - GLib.main_loop_run(ctx, false); // wait fore exit? + ctx.run(); // wait fore exit? } readstr(out_ch, outfile, 'output'); readstr(err_ch, errfile, 'error'); -- 2.39.2