mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
Remove Garbage Collection support.
GC support was never enabled by default and nobody in the current development team seems to care about it.
This commit is contained in:
parent
9586766d87
commit
29cf546ee4
5 changed files with 2 additions and 62 deletions
|
|
@ -286,22 +286,6 @@ static void winsock_init(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef USE_GC
|
||||
#ifdef HAVE_GC_H
|
||||
# include <gc.h>
|
||||
#else
|
||||
# include <gc/gc.h>
|
||||
#endif
|
||||
|
||||
GMemVTable gc_mem_table = {
|
||||
GC_malloc,
|
||||
GC_realloc,
|
||||
GC_free,
|
||||
|
||||
NULL, NULL, NULL
|
||||
};
|
||||
#endif
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
static int version = 0;
|
||||
|
|
@ -312,10 +296,6 @@ int main(int argc, char **argv)
|
|||
};
|
||||
int loglev;
|
||||
|
||||
#ifdef USE_GC
|
||||
g_mem_set_vtable(&gc_mem_table);
|
||||
#endif
|
||||
|
||||
core_register_options();
|
||||
fe_common_core_register_options();
|
||||
args_register(options);
|
||||
|
|
@ -369,9 +349,6 @@ int main(int argc, char **argv)
|
|||
/* Does the same as g_main_run(main_loop), except we
|
||||
can call our dirty-checker after each iteration */
|
||||
while (!quitting) {
|
||||
#ifdef USE_GC
|
||||
GC_collect_a_little();
|
||||
#endif
|
||||
if (!dummy) term_refresh_freeze();
|
||||
g_main_iteration(TRUE);
|
||||
if (!dummy) term_refresh_thaw();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue