* test.c (main, WinMain): Consistently don't invoke
GC_enable_incremental() if MAKE_BACKGRAPH is defined, but
do invoke it even if parallel marking is enabled.
+2009-12-10 Hans-J. Boehm <Hans.Boehm@hp.com>
+
+ * test.c (main, WinMain): Consistently don't invoke
+ GC_enable_incremental() if MAKE_BACKGRAPH is defined, but
+ do invoke it even if parallel marking is enabled.
+
2009-12-08 Ivan Maidanski <ivmai@mail.ru>
* tests/test.c (reverse_test): Comment out a check for MSWIN32
GC_printf("Using DllMain to track threads\n");
# endif
GC_COND_INIT();
-# ifndef NO_INCREMENTAL
+# if !defined(MAKE_BACK_GRAPH) && !defined(NO_INCREMENTAL)
GC_enable_incremental();
# endif
InitializeCriticalSection(&incr_cs);
pthread_attr_setstacksize(&attr, 1000000);
# endif
n_tests = 0;
-# if (defined(MPROTECT_VDB)) \
- && !defined(PARALLEL_MARK) &&!defined(REDIRECT_MALLOC) \
+# if (defined(MPROTECT_VDB)) && !defined(REDIRECT_MALLOC) \
&& !defined(MAKE_BACK_GRAPH) && !defined(USE_PROC_FOR_LIBRARIES) \
&& !defined(NO_INCREMENTAL)
GC_enable_incremental();