diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-12-30 07:32:05 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-12-30 07:32:05 +0000 |
commit | 58820749797f5aa1faba9362abbbedb5caafeb0d (patch) | |
tree | f379ee4b3568716c1d6b5c4416d2becb9cfd073b /gobject | |
parent | fd73fead6fa24d730c674a348b4e9a27b71fcb5a (diff) |
Remove the handler trash stack, which is now unused.
2005-12-30 Matthias Clasen <mclasen@redhat.com>
* gsignal.c: Remove the handler trash stack, which
is now unused.
Diffstat (limited to 'gobject')
-rw-r--r-- | gobject/ChangeLog | 5 | ||||
-rw-r--r-- | gobject/gsignal.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 4946d3460..2e8ea18e6 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,8 @@ +2005-12-30 Matthias Clasen <mclasen@redhat.com> + + * gsignal.c: Remove the handler trash stack, which + is now unused. + 2005-12-24 Matthias Clasen <mclasen@redhat.com> * gobject.symbols: Add new functions. diff --git a/gobject/gsignal.c b/gobject/gsignal.c index 1da35bfb4..b878d7087 100644 --- a/gobject/gsignal.c +++ b/gobject/gsignal.c @@ -226,9 +226,6 @@ static GBSearchConfig g_class_closure_bconfig = { static GHashTable *g_handler_list_bsa_ht = NULL; static Emission *g_recursive_emissions = NULL; static Emission *g_restart_emissions = NULL; -#ifndef DISABLE_MEM_POOLS -static GTrashStack *g_handler_ts = NULL; -#endif static gulong g_handler_sequential_number = 1; G_LOCK_DEFINE_STATIC (g_signal_mutex); #define SIGNAL_LOCK() G_LOCK (g_signal_mutex) |