Disable scanning for interior pointers

This may remove the "Repeated allocation of very large block"
warnings.
This commit is contained in:
Eelco Dolstra 2015-03-19 20:10:08 +01:00
parent 726f7f7fc9
commit b005e63ccf
1 changed files with 2 additions and 0 deletions

View File

@ -199,6 +199,8 @@ void initGC()
#if HAVE_BOEHMGC
/* Initialise the Boehm garbage collector. */
GC_set_all_interior_pointers(0);
GC_INIT();
GC_oom_fn = oomHandler;