[amd64] Remove the callee saved registers from MonoLMF, save/restore them normally...
[mono-project.git] / mono / metadata / sgen-marksweep-par.c
blob5bc7805c870382161815486b01628957d6d2b253
1 #include "config.h"
3 #ifdef HAVE_SGEN_GC
5 #ifndef DISABLE_SGEN_MAJOR_MARKSWEEP_PAR
7 #define SGEN_PARALLEL_MARK
9 #include "sgen-marksweep.c"
11 #else
13 #include "metadata/sgen-gc.h"
15 void
16 sgen_marksweep_par_init (SgenMajorCollector *collector)
18 fprintf (stderr, "Error: Mono was configured using --enable-minimal=sgen_marksweep_par.\n");
19 exit (1);
22 #endif /* DISABLE_SGEN_MAJOR_MARKSWEEP_PAR */
24 #endif