cvs commit: src/sys/conf files src/sys/ddb db_capture.c
db_command.c db_input.c db_main.c db_output.c ddb.h
Robert Watson
rwatson at FreeBSD.org
Tue Dec 25 15:06:51 PST 2007
rwatson 2007-12-25 23:06:51 UTC
FreeBSD src repository
Modified files:
sys/conf files
sys/ddb db_command.c db_input.c db_main.c
db_output.c ddb.h
Added files:
sys/ddb db_capture.c
Log:
Add a new DDB(4) facility, output capture. Input and output from DDB may be
captured to a memory buffer for later inspection using sysctl(8), or in the
future, to a textdump.
A new DDB command, "capture", is added, which accepts arguments "on", "off",
"reset", and "status".
A new DDB sysctl tree, debug.ddb.capture, is added, which can be used to
resize the capture buffer and extract buffer contents.
MFC after: 3 months
Revision Changes Path
1.1258 +1 -0 src/sys/conf/files
1.1 +301 -0 src/sys/ddb/db_capture.c (new)
1.74 +1 -0 src/sys/ddb/db_command.c
1.37 +1 -0 src/sys/ddb/db_input.c
1.6 +3 -0 src/sys/ddb/db_main.c
1.38 +8 -0 src/sys/ddb/db_output.c
1.44 +15 -0 src/sys/ddb/ddb.h
More information about the cvs-src
mailing list