Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-02-08 18:46:17 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-02-08 19:05:07 +0300
commitdc085eacecf80e091967f8ab25ea5270ad9a8480 (patch)
tree1af2ec29284c4bb7c6f6156498ca446096957cb4
parent35c22df6fcc57a3404962ff9ef4eec082cda962e (diff)
[readme] Clarify --enable-parallel-mark description
It's Boehm only and not enabled by default on some platforms (e.g. it's disabled on OSX).
-rw-r--r--README.md6
-rw-r--r--configure.ac2
2 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index f8f05423a34..8305cb08b3f 100644
--- a/README.md
+++ b/README.md
@@ -426,8 +426,10 @@ cycle.
multiple CPUs to do its work. This helps performance
on multi-CPU machines as the work is divided across CPUS.
- * This option is not currently the default as we have
-not done much testing with Mono.
+ * This option is not currently the default on OSX
+as it runs into issues there.
+
+ * This option only applies to the Boehm GC.
* `--enable-dtrace`
diff --git a/configure.ac b/configure.ac
index da4c798818d..bf6208e5dd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -976,7 +976,7 @@ AC_ARG_WITH(libgc, [ --with-gc=included,none Controls the Boehm GC config, d
AC_ARG_ENABLE(boehm, [ --disable-boehm Disable the Boehm GC.], support_boehm=$enableval,support_boehm=${support_boehm:-yes})
AM_CONDITIONAL(SUPPORT_BOEHM, test x$support_boehm = xyes)
-AC_ARG_ENABLE(parallel-mark, [ --enable-parallel-mark Enables GC Parallel Marking], enable_parallel_mark=$enableval, enable_parallel_mark=$parallel_mark)
+AC_ARG_ENABLE(parallel-mark, [ --enable-parallel-mark Enables Boehm GC Parallel Marking], enable_parallel_mark=$enableval, enable_parallel_mark=$parallel_mark)
if test x$enable_parallel_mark = xyes; then
libgc_configure_args="$libgc_configure_args --enable-parallel-mark"
fi