From ad27c4c7e02e7799efa56bf15c3cd77b674fe2e2 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 19 Sep 2003 19:04:30 +0000 Subject: [PATCH] Document MUTEX_NOINLINE. Reported by: sam --- sys/conf/NOTES | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/conf/NOTES b/sys/conf/NOTES index e5ae8a411bb..5aaf2b19356 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -167,6 +167,13 @@ options SMP # Symmetric MultiProcessor Kernel # CPU. options ADAPTIVE_MUTEXES +# MUTEX_NOINLINE forces mutex operations to call functions to perform each +# operation rather than inlining the simple cases. This can be used to +# shrink the size of the kernel text segment. Note that this behavior is +# already implied by the INVARIANT_SUPPORT, INVARIANTS, MUTEX_PROFILING, +# and WITNESS options. +options MUTEX_NOINLINE + # SMP Debugging Options: # # MUTEX_DEBUG enables various extra assertions in the mutex code.