summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL7
1 files changed, 7 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index 3ec3ecac..6777e7ac 100644
--- a/INSTALL
+++ b/INSTALL
@@ -243,6 +243,13 @@ X15 Options
in a file named `test_pmap_update_mp.c' would be selected with the
option `--enable-test-module=pmap_update_mp'.
+`--enable-mutex-adaptive'
+ Enable the adaptive spinning mutex implementation for regular mutexes.
+ Adaptive spinning mutexes optimistically spin instead of sleep if the
+ owner of a mutex is found running, in the hope the mutex is unlocked
+ soon. This optimization increases performance by avoiding some sleeps
+ and wakeups, but it makes the system globally non real-time.
+
`--enable-mutex-pi'
Enable priority inheritance for regular mutexes (note that priority
inheritance is always enabled for real-time mutexes). This option is