1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00:00

Add RWLOCK_NOINLINE.

This commit is contained in:
John Baldwin 2006-01-31 22:56:44 +00:00
parent a4070931a6
commit 1a5d9b15d6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=155156

View File

@ -191,7 +191,7 @@ options ADAPTIVE_GIANT
# 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,
# already implied by the INVARIANT_SUPPORT, INVARIANTS, KTR, MUTEX_PROFILING,
# and WITNESS options.
options MUTEX_NOINLINE
@ -200,6 +200,13 @@ options MUTEX_NOINLINE
# priority waiter.
options MUTEX_WAKE_ALL
# RWLOCK_NOINLINE forces rwlock 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, KTR, MUTEX_PROFILING,
# and WITNESS options.
options RWLOCK_NOINLINE
# SMP Debugging Options:
#
# PREEMPTION allows the threads that are in the kernel to be preempted