From e82fe14f0098d6cfdd71a6a2c7d15dd15083b882 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Thu, 12 Jul 2012 19:54:41 -0400 Subject: [PATCH] shell-global: remove unused shell_global_maybe_gc() It's not used anywhere, and we're removing the manual garbage collection invocations anyway. https://bugzilla.gnome.org/show_bug.cgi?id=679832 --- src/shell-global.c | 14 -------------- src/shell-global.h | 1 - 2 files changed, 15 deletions(-) diff --git a/src/shell-global.c b/src/shell-global.c index 10fb0b35e..f467e3484 100644 --- a/src/shell-global.c +++ b/src/shell-global.c @@ -1206,20 +1206,6 @@ shell_global_gc (ShellGlobal *global) JS_GC (context); } -/** - * shell_global_maybe_gc: - * @global: A #ShellGlobal - * - * Start a garbage collection process when it would free up enough memory - * to be worth the amount of time it would take - * https://developer.mozilla.org/en/SpiderMonkey/JSAPI_Reference/JS_MaybeGC - */ -void -shell_global_maybe_gc (ShellGlobal *global) -{ - gjs_context_maybe_gc (global->js_context); -} - static void shell_global_on_gc (GjsContext *context, ShellGlobal *global) diff --git a/src/shell-global.h b/src/shell-global.h index 4d92995c9..1c25c0453 100644 --- a/src/shell-global.h +++ b/src/shell-global.h @@ -87,7 +87,6 @@ void shell_global_get_pointer (ShellGlobal *global, /* JavaScript utilities */ void shell_global_gc (ShellGlobal *global); -void shell_global_maybe_gc (ShellGlobal *global); typedef struct { guint glibc_uordblks;