mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
023fc80ee3
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Similar commit in main:
(cherry picked from commit d0b2dbfa0e
)
14 lines
494 B
Text
14 lines
494 B
Text
#
|
|
# This file is read when going to multi-user and its contents piped thru
|
|
# ``ddb'' to define debugging scripts.
|
|
#
|
|
# see ``man 4 ddb'' and ``man 8 ddb'' for details.
|
|
#
|
|
|
|
script lockinfo=show locks; show alllocks; show lockedvnods
|
|
|
|
# kdb.enter.panic panic(9) was called.
|
|
script kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture off; textdump dump; reset
|
|
|
|
# kdb.enter.witness witness(4) detected a locking error.
|
|
script kdb.enter.witness=run lockinfo
|