summaryrefslogtreecommitdiffstats
path: root/share/man/man4/ddb.4 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add a top-level "reboot" command, for people who keep forgetting "boot reboot"deraadt2020-10-261-2/+6
| | | | ok kn
* ddb(4); be explicit that the parameter to trace /t uses the radixsthen2020-06-171-2/+4
| | | | | | prefix, and show how to use 0t for decimal (slight duplication from the table in EXPRESSIONS but easier for the reader than sending them off to look in a different part of the manual). ok mpi claudio jmc
* Add missing definition tags to abbreviated commands. As an example,anton2020-05-171-2/+10
| | | | | | makes it possible to jump to the examine command from within $PAGER. ok kn@ schwarze@
* Use '/t' on all architectures to get a trace via TID.mpi2020-05-141-5/+5
| | | | ok sthen@, patrick@
* replace links to uvm(9) to uvm_init(9); ok mpijmc2019-12-061-3/+3
|
* Stop mentioning unsupported #number argument for break commandkn2019-08-291-12/+3
| | | | There is no code for addressing breakpoints by numbers at all.
* correct the description of "print"; from artturi almjmc2018-05-191-11/+6
| | | | ok mpi
* missing Sx; ok jmc@anton2017-11-291-3/+5
|
* New ddb(4) command: kill.mpi2017-09-291-2/+9
| | | | | | | | Send an uncatchable SIGABRT to the process specified by the pid argument. Useful in case of CPU exhaustion to kill the DoSing process and generate a core for later inspection. ok phessler@, visa@, kettenis@, miod@
* option DDB_STRUCT is gone, 'show struct' now work in GENERIC.mpi2017-09-121-21/+7
|
* sort SEE ALSO;jmc2017-08-141-2/+2
|
* Restore "print" in ddb; add "pp[rint]" for pretty-printinguwe2017-08-141-3/+15
| | | | | | | | | | | Changing the "print" command to use db_ctf_pprint_cmd() broke all documented uses and "examine" does not allow printing variables, or individual registers. For now it is better to leave the "print" command intact, and in sync with the ddb(4) man page, but we still want "pp[rint]" to replace the "print" command when it works better. ok mpi@
* Fewer kgdb(7) references and fix previous.mpi2017-05-011-3/+2
| | | | Pointed by jmc@
* Shuffle bits into their proper files.visa2017-04-221-2/+28
| | | | Prompted by jmc@
* Display process group in "ps /w" since they got removed from "ps /n".mpi2017-01-241-2/+2
| | | | | | While here fix the formating of /w /o and /a. ok guenther@
* Display the thread ID (TID) rather than the process group ID (PGRP)mpi2017-01-241-3/+3
| | | | | | | | in ddb(4)'s default 'ps' view. This allow to use 'tr /p' easily now that it requires a TID. With inputs from guenther@
* The /p modifier now takes a TID, while here add a missing argumentmpi2017-01-241-5/+5
| | | | | | for 'show all procs'. ok guenther@
* no more sparc;jmc2016-09-011-7/+2
|
* un-vax;jmc2016-03-101-4/+2
|
* document "show socket".dlg2016-01-151-2/+11
| | | | jmc@ was super keen for this.
* Add ps/oguenther2015-09-111-5/+9
|
* sparc64 supports the normal cpuinfo/ddbcpu/startcpu/stopcpu nowguenther2015-08-291-3/+3
|
* Replace \*(Lt \*(Le \*(Gt \*(Ge with literal < <= > >= respectively,naddy2015-02-161-4/+4
| | | | | except for instances where \*(Le and \*(Ge are clearly understood as mathematical symbols. Discussed with schwarze@
* Retire hp300, mvme68k and mvme88k ports. These ports have no users, keepingmiod2014-03-181-11/+2
| | | | | | | this hardware alive is becoming increasingly difficult, and I should heed the message sent by the three disks which have died on me over the last few days. Noone sane will mourn these ports anyway. So long, and thanks for the fish.
* some formatting/sorting/consistency fixes for "machine"; ok guentherjmc2012-11-141-37/+44
|
* Document the machine subcommands.guenther2012-11-111-4/+144
| | | | ok jmc@, pirofti@, mlarkin@
* When multiple display modifiers are specified on a ddb examine command, domiod2011-11-071-3/+2
| | | | | | | not advance the address until the last modifier has been processed. This allows sequences like `x/xi address,count' to yield meaningful results. As a bonus, handle `i' and `I' modifiers last, so that I don't have to fight my habit of using `x/ix' instead of `x/xi'.
* there are no cachelist or logs for poolstedu2011-07-051-7/+3
|
* Get rid of the vm_map field of ddb breakpoints and watchpoints, and do notmiod2010-11-271-2/+1
| | | | pretend these could work on userland addresses.
* Remove ddb single-step load and store counters. Most platforms do notmiod2010-11-271-5/+4
| | | | implement them, and they are of questionable usefulness.
* Document "show mbuf addr" to display the mbuf header of the mbuf at addr.claudio2010-11-051-2/+13
| | | | Requested by miod@
* dispense with some wacky escape sequences;jmc2010-03-261-3/+3
|
* Document 'show bcstats'.jsing2010-02-031-2/+5
| | | | ok beck@
* Fix examine command option list.miod2009-11-221-3/+3
|
* document 'show all bufs'jasper2009-08-171-2/+13
|
* tweak previous (you were missing an .El, thib);jmc2009-08-151-42/+42
|
* document show (all) nfsnode(s) and fix up the nfsreq parts.thib2009-08-141-4/+36
| | | | | the alignment is a bit off, but I can't spot why so I'm hoping jmc@ will "tweak previous" soon.
* zap trailing whitespace;jmc2009-08-131-2/+2
|
* document the show all vnodes command. prompted by jmc@.thib2009-08-131-2/+13
|
* need a space between args and punctuation;jmc2009-08-101-3/+3
|
* Introduce option DDB_STRUCT. Kernels compiled with this option (except onmiod2009-08-091-2/+29
| | | | | | | | | a few arches where toolchain limitations apply) will embed some symbolic information about the various structs used within the kernel, and have new ddb commands allowing struct display and some useful information gathering. Kernel rodata increase varies accross platforms from ~150KB to ~300KB. This option is not enabled by default.
* Document ddb.trigger.jsing2009-02-221-5/+7
| | | | ok jmc@
* Add nfs ddb hooks, for now only to show all the outstanding nfsreq'sthib2009-01-181-2/+20
| | | | | | | and to print out struct nfsreq. "get it in so people can pound on it" blambert@ OK and information_s_ on the manpage from miod@
* - document machdep.ddb=2jmc2008-12-231-14/+22
| | | | | | | - tidy up the text around it a little - no need to discuss kernel options we have on by default (DDB) feedback/ok dlg
* - Ctl -> Ctrljmc2008-09-011-4/+4
| | | | | | - some missing words from the vnode command from Pierre Riteau
* some missing articles; from Pierre Riteaujmc2008-05-181-3/+3
|
* Missing .El; spotted by jmc@miod2008-03-231-1/+2
|
* show all mounts command for ddb. From mickey a long time ago.miod2008-03-231-2/+13
|
* convert to new .Dd format;jmc2007-05-311-2/+2
|
* document show buf|vnode|mountmickey2007-03-181-1/+55
|