Changeset View
Changeset View
Standalone View
Standalone View
sys/conf/NOTES
| Show First 20 Lines • Show All 558 Lines • ▼ Show 20 Lines | |||||
| # The KASSERT_PANIC_OPTIONAL option allows kasserts to fire without | # The KASSERT_PANIC_OPTIONAL option allows kasserts to fire without | ||||
| # necessarily inducing a panic. Panic is the default behavior, but | # necessarily inducing a panic. Panic is the default behavior, but | ||||
| # runtime options can configure it either entirely off, or off with a | # runtime options can configure it either entirely off, or off with a | ||||
| # limit. | # limit. | ||||
| # | # | ||||
| options KASSERT_PANIC_OPTIONAL | options KASSERT_PANIC_OPTIONAL | ||||
| # | # | ||||
| # KASSERT_PANIC_NOCONTEXT omits source-location context from panic(9) and | |||||
| # KASSERT diagnostics. This reduces kernel image size at the cost of less | |||||
| # precise panic messages. | |||||
| # | |||||
| options KASSERT_PANIC_NOCONTEXT | |||||
| # | |||||
| # The DIAGNOSTIC option is used to enable extra debugging information | # The DIAGNOSTIC option is used to enable extra debugging information | ||||
| # and invariants checking. The added checks are too expensive or noisy | # and invariants checking. The added checks are too expensive or noisy | ||||
| # for an INVARIANTS kernel and thus are disabled by default. It is | # for an INVARIANTS kernel and thus are disabled by default. It is | ||||
| # expected that a kernel configured with DIAGNOSTIC will also have the | # expected that a kernel configured with DIAGNOSTIC will also have the | ||||
| # INVARIANTS option enabled. | # INVARIANTS option enabled. | ||||
| # | # | ||||
| options DIAGNOSTIC | options DIAGNOSTIC | ||||
| ▲ Show 20 Lines • Show All 2,286 Lines • Show Last 20 Lines | |||||