diff options
author | grog <grog@FreeBSD.org> | 1999-10-13 03:14:54 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-10-13 03:14:54 +0000 |
commit | 78a3376393ef469d3cf40d75e10b36fc9acd09c3 (patch) | |
tree | dc0f3c2a3c9e3ac9e219f269dd06270b63d469bf /sys/modules/vinum | |
parent | 5f17823e6d7db950b2057df4693ecd2035b73039 (diff) | |
download | FreeBSD-src-78a3376393ef469d3cf40d75e10b36fc9acd09c3.zip FreeBSD-src-78a3376393ef469d3cf40d75e10b36fc9acd09c3.tar.gz |
Add macro 'msgbuf' for printing out msgbuf.
Diffstat (limited to 'sys/modules/vinum')
-rw-r--r-- | sys/modules/vinum/.gdbinit.kernel | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/modules/vinum/.gdbinit.kernel b/sys/modules/vinum/.gdbinit.kernel index ecef651..c814d7f 100644 --- a/sys/modules/vinum/.gdbinit.kernel +++ b/sys/modules/vinum/.gdbinit.kernel @@ -637,3 +637,9 @@ end document kldstat Equivalent of the kldstat(9) command, without options. end +define msgbuf +printf "%s", msgbufp->msg_ptr +end +document msgbuf +Print the system message buffer (dmesg). This can take a long time due to the time it takes to transmit the data across a serial line. +end |