OpenBSD CVS

CVS log for src/share/man/man4/ddb.4


[BACK] Up to [local] / src / share / man / man4

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.107 / (download) - annotate - [select for diffs], Mon Feb 5 21:33:00 2024 UTC (4 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, HEAD
Changes since 1.106: +3 -12 lines
Diff to previous 1.106 (colored)

remove /f from "show buf", which was used for softdep info
and is no longer relevant after softdep removal;

confirmed by miod

Revision 1.106 / (download) - annotate - [select for diffs], Tue Sep 19 11:36:33 2023 UTC (8 months, 2 weeks ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_7_4_BASE, OPENBSD_7_4
Changes since 1.105: +12 -3 lines
Diff to previous 1.105 (colored)

Document the new 'show proc /t TID' way of showing a proc via thread id.

Revision 1.105 / (download) - annotate - [select for diffs], Thu Dec 22 19:53:22 2022 UTC (17 months, 2 weeks ago) by kn
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3
Changes since 1.104: +3 -3 lines
Diff to previous 1.104 (colored)

Denote multiple arguments with 'arg ...' not 'args'

A few programs used the plural in their synopsis which doesn't read as
clear as the obvious triple-dot notation.

mdoc(7) .Ar defaults to "file ..." if no arguments are given and consistent
use of 'arg ...' matches that behaviour.

Cleanup a few markups of the same argument so the text keeps reading
naturally;  omit unhelpful parts like 'if optional arguments are given,
they are passed along' for tools like time(1) and timeout(1) that obviously
execute commands with whatever arguments where given -- just like doas(1)
which doesn't mention arguments in its DESCRIPTION in the first place.

For expr(1) the difference between 'expressions' and 'expression ...' is
crucial, as arguments must be passed as individual words.

Feedback millert jmc schwarze deraadt
OK jmc

Revision 1.104 / (download) - annotate - [select for diffs], Sun Sep 11 06:38:11 2022 UTC (20 months, 3 weeks ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2
Changes since 1.103: +15 -15 lines
Diff to previous 1.103 (colored)

.Li -> .Vt where appropriate;
from josiah frentsos, tweaked by schwarze

ok schwarze

Revision 1.103 / (download) - annotate - [select for diffs], Fri Jul 29 17:47:11 2022 UTC (22 months, 1 week ago) by semarie
Branch: MAIN
Changes since 1.102: +5 -2 lines
Diff to previous 1.102 (colored)

Replace the swap extent(9) usage by a blist data structure.

It makes uvm_swap_free() faster: extents have a cost of O(n*n) which doesn't
really scale with gigabytes of swap.

Based on initial work from mpi@
The blist implementation comes from DragonFlyBSD.

The diff adds also a ddb(4) 'show swap' command to show the blist and help
debugging, and fix some off-by-one in size printed during hibernate.

ok mpi@

Revision 1.102 / (download) - annotate - [select for diffs], Thu Jul 28 22:19:09 2022 UTC (22 months, 1 week ago) by bluhm
Branch: MAIN
Changes since 1.101: +28 -2 lines
Diff to previous 1.101 (colored)

In the kernel exist functions to print routes, but they were not
accessible from ddb.  Implement "show all routes" to print routing
tables, and "show route 0xfffffd807e9b0000" for a single route
entry.  Note that the rtable id is not part of a route entry, so
it makes no sense to print it there.
OK deraadt@

Revision 1.101 / (download) - annotate - [select for diffs], Thu Mar 31 17:27:20 2022 UTC (2 years, 2 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.100: +11 -11 lines
Diff to previous 1.100 (colored)

man pages: add missing commas between subordinate and main clauses

jmc@ dislikes a comma before "then" in a conditional, so leave those
untouched.

ok jmc@

Revision 1.100 / (download) - annotate - [select for diffs], Tue Nov 16 13:53:14 2021 UTC (2 years, 6 months ago) by bluhm
Branch: MAIN
Changes since 1.99: +26 -2 lines
Diff to previous 1.99 (colored)

To debug IPsec and tdb refcounting it is useful to have "show tdb"
and "show all tdbs" in ddb.
tested by Hrvoje Popovski; OK mvs@

Revision 1.99 / (download) - annotate - [select for diffs], Mon Oct 26 18:53:20 2020 UTC (3 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.98: +6 -2 lines
Diff to previous 1.98 (colored)

add a top-level "reboot" command, for people who keep forgetting "boot reboot"
ok kn

Revision 1.98 / (download) - annotate - [select for diffs], Wed Jun 17 10:55:24 2020 UTC (3 years, 11 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.97: +4 -2 lines
Diff to previous 1.97 (colored)

ddb(4); be explicit that the parameter to trace /t uses the radix
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

Revision 1.97 / (download) - annotate - [select for diffs], Sun May 17 14:34:35 2020 UTC (4 years ago) by anton
Branch: MAIN
Changes since 1.96: +10 -2 lines
Diff to previous 1.96 (colored)

Add missing definition tags to abbreviated commands. As an example,
makes it possible to jump to the examine command from within $PAGER.

ok kn@ schwarze@

Revision 1.96 / (download) - annotate - [select for diffs], Thu May 14 06:58:54 2020 UTC (4 years ago) by mpi
Branch: MAIN
Changes since 1.95: +5 -5 lines
Diff to previous 1.95 (colored)

Use '/t' on all architectures to get a trace via TID.

ok sthen@, patrick@

Revision 1.95 / (download) - annotate - [select for diffs], Fri Dec 6 19:15:16 2019 UTC (4 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.94: +3 -3 lines
Diff to previous 1.94 (colored)

replace links to uvm(9) to uvm_init(9); ok mpi

Revision 1.94 / (download) - annotate - [select for diffs], Thu Aug 29 21:21:18 2019 UTC (4 years, 9 months ago) by kn
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.93: +3 -12 lines
Diff to previous 1.93 (colored)

Stop mentioning unsupported #number argument for break command

There is no code for addressing breakpoints by numbers at all.

Revision 1.93 / (download) - annotate - [select for diffs], Sat May 19 17:51:15 2018 UTC (6 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.92: +6 -11 lines
Diff to previous 1.92 (colored)

correct the description of "print"; from artturi alm
ok mpi

Revision 1.92 / (download) - annotate - [select for diffs], Wed Nov 29 07:28:21 2017 UTC (6 years, 6 months ago) by anton
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.91: +5 -3 lines
Diff to previous 1.91 (colored)

missing Sx; ok jmc@

Revision 1.91 / (download) - annotate - [select for diffs], Fri Sep 29 09:36:04 2017 UTC (6 years, 8 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.90: +9 -2 lines
Diff to previous 1.90 (colored)

New ddb(4) command: kill.

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@

Revision 1.90 / (download) - annotate - [select for diffs], Tue Sep 12 08:27:44 2017 UTC (6 years, 8 months ago) by mpi
Branch: MAIN
Changes since 1.89: +6 -20 lines
Diff to previous 1.89 (colored)

option DDB_STRUCT is gone, 'show struct' now work in GENERIC.

Revision 1.89 / (download) - annotate - [select for diffs], Mon Aug 14 21:31:00 2017 UTC (6 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.88: +3 -3 lines
Diff to previous 1.88 (colored)

sort SEE ALSO;

Revision 1.88 / (download) - annotate - [select for diffs], Mon Aug 14 19:57:05 2017 UTC (6 years, 9 months ago) by uwe
Branch: MAIN
Changes since 1.87: +15 -3 lines
Diff to previous 1.87 (colored)

Restore "print" in ddb; add "pp[rint]" for pretty-printing

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@

Revision 1.87 / (download) - annotate - [select for diffs], Mon May 1 06:39:25 2017 UTC (7 years, 1 month ago) by mpi
Branch: MAIN
Changes since 1.86: +2 -3 lines
Diff to previous 1.86 (colored)

Fewer kgdb(7) references and fix previous.

Pointed by jmc@

Revision 1.86 / (download) - annotate - [select for diffs], Sat Apr 22 11:05:04 2017 UTC (7 years, 1 month ago) by visa
Branch: MAIN
Changes since 1.85: +27 -1 lines
Diff to previous 1.85 (colored)

Shuffle bits into their proper files.

Prompted by jmc@

Revision 1.85 / (download) - annotate - [select for diffs], Tue Jan 24 05:32:00 2017 UTC (7 years, 4 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.84: +2 -2 lines
Diff to previous 1.84 (colored)

Display process group in "ps /w" since they got removed from "ps /n".

While here fix the formating of /w /o and /a.

ok guenther@

Revision 1.84 / (download) - annotate - [select for diffs], Tue Jan 24 04:50:48 2017 UTC (7 years, 4 months ago) by mpi
Branch: MAIN
Changes since 1.83: +4 -4 lines
Diff to previous 1.83 (colored)

Display the thread ID (TID) rather than the process group ID (PGRP)
in ddb(4)'s default 'ps' view.

This allow to use 'tr /p' easily now that it requires a TID.

With inputs from guenther@

Revision 1.83 / (download) - annotate - [select for diffs], Tue Jan 24 01:01:33 2017 UTC (7 years, 4 months ago) by mpi
Branch: MAIN
Changes since 1.82: +5 -5 lines
Diff to previous 1.82 (colored)

The /p modifier now takes a TID, while here add a missing argument
for 'show all procs'.

ok guenther@

Revision 1.82 / (download) - annotate - [select for diffs], Thu Sep 1 12:24:56 2016 UTC (7 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.81: +2 -7 lines
Diff to previous 1.81 (colored)

no more sparc;

Revision 1.81 / (download) - annotate - [select for diffs], Thu Mar 10 08:56:46 2016 UTC (8 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.80: +2 -4 lines
Diff to previous 1.80 (colored)

un-vax;

Revision 1.80 / (download) - annotate - [select for diffs], Fri Jan 15 11:39:28 2016 UTC (8 years, 4 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.79: +11 -2 lines
Diff to previous 1.79 (colored)

document "show socket".

jmc@ was super keen for this.

Revision 1.79 / (download) - annotate - [select for diffs], Fri Sep 11 08:34:35 2015 UTC (8 years, 8 months ago) by guenther
Branch: MAIN
Changes since 1.78: +9 -5 lines
Diff to previous 1.78 (colored)

Add ps/o

Revision 1.78 / (download) - annotate - [select for diffs], Sat Aug 29 00:01:54 2015 UTC (8 years, 9 months ago) by guenther
Branch: MAIN
Changes since 1.77: +3 -3 lines
Diff to previous 1.77 (colored)

sparc64 supports the normal cpuinfo/ddbcpu/startcpu/stopcpu now

Revision 1.77 / (download) - annotate - [select for diffs], Mon Feb 16 16:38:54 2015 UTC (9 years, 3 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.76: +4 -4 lines
Diff to previous 1.76 (colored)

Replace \*(Lt \*(Le \*(Gt \*(Ge with literal < <= > >= respectively,
except for instances where \*(Le and \*(Ge are clearly understood as
mathematical symbols.  Discussed with schwarze@

Revision 1.76 / (download) - annotate - [select for diffs], Tue Mar 18 22:36:31 2014 UTC (10 years, 2 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.75: +2 -11 lines
Diff to previous 1.75 (colored)

Retire hp300, mvme68k and mvme88k ports. These ports have no users, keeping
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.

Revision 1.75 / (download) - annotate - [select for diffs], Wed Nov 14 22:19:02 2012 UTC (11 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.74: +44 -37 lines
Diff to previous 1.74 (colored)

some formatting/sorting/consistency fixes for "machine"; ok guenther

Revision 1.74 / (download) - annotate - [select for diffs], Sun Nov 11 18:28:17 2012 UTC (11 years, 6 months ago) by guenther
Branch: MAIN
Changes since 1.73: +144 -4 lines
Diff to previous 1.73 (colored)

Document the machine subcommands.

ok jmc@, pirofti@, mlarkin@

Revision 1.73 / (download) - annotate - [select for diffs], Mon Nov 7 20:29:56 2011 UTC (12 years, 7 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1
Changes since 1.72: +2 -3 lines
Diff to previous 1.72 (colored)

When multiple display modifiers are specified on a ddb examine command, do
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'.

Revision 1.72 / (download) - annotate - [select for diffs], Tue Jul 5 07:08:25 2011 UTC (12 years, 11 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.71: +2 -6 lines
Diff to previous 1.71 (colored)

there are no cachelist or logs for pools

Revision 1.71 / (download) - annotate - [select for diffs], Sat Nov 27 19:59:10 2010 UTC (13 years, 6 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.70: +2 -3 lines
Diff to previous 1.70 (colored)

Get rid of the vm_map field of ddb breakpoints and watchpoints, and do not
pretend these could work on userland addresses.

Revision 1.70 / (download) - annotate - [select for diffs], Sat Nov 27 19:57:21 2010 UTC (13 years, 6 months ago) by miod
Branch: MAIN
Changes since 1.69: +4 -5 lines
Diff to previous 1.69 (colored)

Remove ddb single-step load and store counters. Most platforms do not
implement them, and they are of questionable usefulness.

Revision 1.69 / (download) - annotate - [select for diffs], Fri Nov 5 15:18:54 2010 UTC (13 years, 7 months ago) by claudio
Branch: MAIN
Changes since 1.68: +13 -2 lines
Diff to previous 1.68 (colored)

Document "show mbuf addr" to display the mbuf header of the mbuf at addr.
Requested by miod@

Revision 1.68 / (download) - annotate - [select for diffs], Fri Mar 26 19:30:40 2010 UTC (14 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Changes since 1.67: +3 -3 lines
Diff to previous 1.67 (colored)

dispense with some wacky escape sequences;

Revision 1.67 / (download) - annotate - [select for diffs], Wed Feb 3 00:41:00 2010 UTC (14 years, 4 months ago) by jsing
Branch: MAIN
CVS Tags: OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.66: +3 -0 lines
Diff to previous 1.66 (colored)

Document 'show bcstats'.

ok beck@

Revision 1.66 / (download) - annotate - [select for diffs], Sun Nov 22 00:04:48 2009 UTC (14 years, 6 months ago) by miod
Branch: MAIN
Changes since 1.65: +3 -3 lines
Diff to previous 1.65 (colored)

Fix examine command option list.

Revision 1.65 / (download) - annotate - [select for diffs], Mon Aug 17 13:12:11 2009 UTC (14 years, 9 months ago) by jasper
Branch: MAIN
Changes since 1.64: +13 -2 lines
Diff to previous 1.64 (colored)

document 'show all bufs'

Revision 1.64 / (download) - annotate - [select for diffs], Sat Aug 15 07:04:52 2009 UTC (14 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.63: +42 -42 lines
Diff to previous 1.63 (colored)

tweak previous (you were missing an .El, thib);

Revision 1.63 / (download) - annotate - [select for diffs], Fri Aug 14 21:27:03 2009 UTC (14 years, 9 months ago) by thib
Branch: MAIN
Changes since 1.62: +34 -2 lines
Diff to previous 1.62 (colored)

document show (all) nfsnode(s) and fix up the nfsreq parts.

the alignment is a bit off, but I can't spot why so I'm
hoping jmc@ will "tweak previous" soon.

Revision 1.62 / (download) - annotate - [select for diffs], Thu Aug 13 20:13:04 2009 UTC (14 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.61: +3 -3 lines
Diff to previous 1.61 (colored)

zap trailing whitespace;

Revision 1.61 / (download) - annotate - [select for diffs], Thu Aug 13 17:50:02 2009 UTC (14 years, 9 months ago) by thib
Branch: MAIN
Changes since 1.60: +12 -1 lines
Diff to previous 1.60 (colored)

document the show all vnodes command. prompted by jmc@.

Revision 1.60 / (download) - annotate - [select for diffs], Mon Aug 10 04:53:58 2009 UTC (14 years, 10 months ago) by jmc
Branch: MAIN
Changes since 1.59: +3 -3 lines
Diff to previous 1.59 (colored)

need a space between args and punctuation;

Revision 1.59 / (download) - annotate - [select for diffs], Sun Aug 9 23:04:47 2009 UTC (14 years, 10 months ago) by miod
Branch: MAIN
Changes since 1.58: +29 -2 lines
Diff to previous 1.58 (colored)

Introduce option DDB_STRUCT. Kernels compiled with this option (except on
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.

Revision 1.58 / (download) - annotate - [select for diffs], Sun Feb 22 15:10:41 2009 UTC (15 years, 3 months ago) by jsing
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.57: +5 -3 lines
Diff to previous 1.57 (colored)

Document ddb.trigger.

ok jmc@

Revision 1.57 / (download) - annotate - [select for diffs], Sun Jan 18 13:36:56 2009 UTC (15 years, 4 months ago) by thib
Branch: MAIN
Changes since 1.56: +20 -2 lines
Diff to previous 1.56 (colored)

Add nfs ddb hooks, for now only to show all the outstanding nfsreq's
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@

Revision 1.56 / (download) - annotate - [select for diffs], Tue Dec 23 10:05:24 2008 UTC (15 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.55: +22 -14 lines
Diff to previous 1.55 (colored)

- document machdep.ddb=2
- tidy up the text around it a little
- no need to discuss kernel options we have on by default (DDB)

feedback/ok dlg

Revision 1.55 / (download) - annotate - [select for diffs], Mon Sep 1 05:45:54 2008 UTC (15 years, 9 months ago) by jmc
Branch: MAIN
Changes since 1.54: +4 -4 lines
Diff to previous 1.54 (colored)

- Ctl -> Ctrl
- some missing words from the vnode command

from Pierre Riteau

Revision 1.54 / (download) - annotate - [select for diffs], Sun May 18 06:53:56 2008 UTC (16 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.53: +2 -2 lines
Diff to previous 1.53 (colored)

some missing articles; from Pierre Riteau

Revision 1.53 / (download) - annotate - [select for diffs], Sun Mar 23 20:22:33 2008 UTC (16 years, 2 months ago) by miod
Branch: MAIN
Changes since 1.52: +3 -2 lines
Diff to previous 1.52 (colored)

Missing .El; spotted by jmc@

Revision 1.52 / (download) - annotate - [select for diffs], Sun Mar 23 12:31:56 2008 UTC (16 years, 2 months ago) by miod
Branch: MAIN
Changes since 1.51: +13 -2 lines
Diff to previous 1.51 (colored)

show all mounts command for ddb. From mickey a long time ago.

Revision 1.51 / (download) - annotate - [select for diffs], Thu May 31 19:19:50 2007 UTC (17 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

convert to new .Dd format;

Revision 1.50 / (download) - annotate - [select for diffs], Sun Mar 18 15:27:56 2007 UTC (17 years, 2 months ago) by mickey
Branch: MAIN
Changes since 1.49: +55 -1 lines
Diff to previous 1.49 (colored)

document show buf|vnode|mount

Revision 1.49 / (download) - annotate - [select for diffs], Thu Mar 15 17:10:20 2007 UTC (17 years, 2 months ago) by miod
Branch: MAIN
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

Disable x/q functionnality on 32bit platforms, because the examination code
is not supposed to work on values larger than db_expr_t.

Revision 1.48 / (download) - annotate - [select for diffs], Tue Nov 28 18:56:17 2006 UTC (17 years, 6 months ago) by uwe
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.47: +11 -2 lines
Diff to previous 1.47 (colored)

Support "trace /p <pid>" to show the stack trace of any process.
(Keep in mind that $radix is 0x10 by default.); ok by many

Revision 1.47 / (download) - annotate - [select for diffs], Thu Jul 6 18:16:19 2006 UTC (17 years, 11 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.46: +11 -37 lines
Diff to previous 1.46 (colored)

Sync with reality:
- document ^t in input.
- we do not implement break /u.
- we do not have $workxx variables.
- mention $log and sysctl ddb.*

Revision 1.46 / (download) - annotate - [select for diffs], Sat Jun 17 17:33:33 2006 UTC (17 years, 11 months ago) by miod
Branch: MAIN
Changes since 1.45: +1 -16 lines
Diff to previous 1.45 (colored)

We do not have the xf and xb commands.

Revision 1.45 / (download) - annotate - [select for diffs], Sun May 21 15:55:02 2006 UTC (18 years ago) by jmc
Branch: MAIN
Changes since 1.44: +3 -4 lines
Diff to previous 1.44 (colored)

tweak;

Revision 1.44 / (download) - annotate - [select for diffs], Sat May 20 18:31:50 2006 UTC (18 years ago) by mickey
Branch: MAIN
Changes since 1.43: +12 -1 lines
Diff to previous 1.43 (colored)

document sh all poo

Revision 1.43 / (download) - annotate - [select for diffs], Wed May 3 21:51:29 2006 UTC (18 years, 1 month ago) by miod
Branch: MAIN
Changes since 1.42: +4 -4 lines
Diff to previous 1.42 (colored)

Mention x/I behaviour on m88k.

Revision 1.42 / (download) - annotate - [select for diffs], Thu Dec 15 01:37:32 2005 UTC (18 years, 5 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.41: +15 -5 lines
Diff to previous 1.41 (colored)

Document x/q, sync x/I with reality.

Revision 1.41 / (download) - annotate - [select for diffs], Mon Mar 7 23:41:54 2005 UTC (19 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.40: +8 -8 lines
Diff to previous 1.40 (colored)

more macro simplification;

Revision 1.40 / (download) - annotate - [select for diffs], Tue Jan 4 10:28:35 2005 UTC (19 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.39: +2 -3 lines
Diff to previous 1.39 (colored)

no need for .Li here;

Revision 1.39 / (download) - annotate - [select for diffs], Mon Jan 3 22:55:03 2005 UTC (19 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.38: +8 -8 lines
Diff to previous 1.38 (colored)

use .Aq or \*(Gt instead of `<' and `>';
remove some unneccessary escaping;

Revision 1.38 / (download) - annotate - [select for diffs], Mon Jan 3 22:44:43 2005 UTC (19 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.37: +9 -29 lines
Diff to previous 1.37 (colored)

too much Xo/Xc in this file;

Revision 1.37 / (download) - annotate - [select for diffs], Mon Jan 3 16:49:54 2005 UTC (19 years, 5 months ago) by miod
Branch: MAIN
Changes since 1.36: +7 -1 lines
Diff to previous 1.36 (colored)

Add "show panic" command to ddb, to easily retrieve the panic message.
Will hopefully bring us better panic reports.

From Joris Vink.

Revision 1.36 / (download) - annotate - [select for diffs], Sun Feb 1 12:23:47 2004 UTC (20 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.35: +2 -1 lines
Diff to previous 1.35 (colored)

.Xr crash 8;
from Sam Smith;

Revision 1.35 / (download) - annotate - [select for diffs], Wed Oct 22 06:38:55 2003 UTC (20 years, 7 months ago) by mcbride
Branch: MAIN
Changes since 1.34: +4 -2 lines
Diff to previous 1.34 (colored)

Document how to break into ddb on serial console.

ok mickey@ henning@ deraadt@

Revision 1.34 / (download) - annotate - [select for diffs], Wed Jul 9 13:26:20 2003 UTC (20 years, 11 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.33: +40 -42 lines
Diff to previous 1.33 (colored)

- fix lists/displays
- quote .Cd's
- add/remove .Pp's as necessary
- fix some .Re/.Rs's
- simplify macros

Revision 1.33 / (download) - annotate - [select for diffs], Mon May 12 20:03:35 2003 UTC (21 years, 1 month ago) by mickey
Branch: MAIN
Changes since 1.32: +13 -1 lines
Diff to previous 1.32 (colored)

talk about show proc

Revision 1.32 / (download) - annotate - [select for diffs], Sun Mar 16 10:18:44 2003 UTC (21 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.31: +21 -21 lines
Diff to previous 1.31 (colored)

typos;

ddb(4), hilid(4), hilkbd(4), hilms(4): ok miod@
gsckbd(4): found by miod@

Revision 1.31 / (download) - annotate - [select for diffs], Tue Sep 10 13:15:38 2002 UTC (21 years, 9 months ago) by mpech
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored)

typo in copy/paste.

art@

Revision 1.30 / (download) - annotate - [select for diffs], Thu Apr 25 20:27:43 2002 UTC (22 years, 1 month ago) by ian
Branch: MAIN
Changes since 1.29: +23 -21 lines
Diff to previous 1.29 (colored)

Modernize wording (remove ancient reference), and move invocation
before details of usage.

Revision 1.29 / (download) - annotate - [select for diffs], Mon Jan 28 19:53:41 2002 UTC (22 years, 4 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.28: +51 -10 lines
Diff to previous 1.28 (colored)

Update to mention the new vocabulary added in the last two commits to
ddb/db_command.c, with some text borrowed from NetBSD.

Revision 1.28 / (download) - annotate - [select for diffs], Fri Aug 24 11:21:02 2001 UTC (22 years, 9 months ago) by hugh
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.27: +2 -1 lines
Diff to previous 1.27 (colored)

kgdb(7) cross references this file, so it might as well be reciprocated.

Revision 1.27 / (download) - annotate - [select for diffs], Fri Aug 3 15:21:16 2001 UTC (22 years, 10 months ago) by mpech
Branch: MAIN
Changes since 1.26: +2 -1 lines
Diff to previous 1.26 (colored)

o) We don't like .Pp before/after .Sh;
o) .Nm always has argument in .Sh SYNOPSIS;
o) We always closes .Bl and .Bd tags;

millert@ ok

Revision 1.26 / (download) - annotate - [select for diffs], Wed Apr 18 23:18:56 2001 UTC (23 years, 1 month ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.25: +3 -1 lines
Diff to previous 1.25 (colored)

Document boot halt.

Revision 1.25 / (download) - annotate - [select for diffs], Thu Mar 1 16:11:16 2001 UTC (23 years, 3 months ago) by aaron
Branch: MAIN
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

A slew of share/ man page fixes; nordin@cse.ogi.edu. These have been sitting
in my INBOX since Nov 6, 2000, probably forgot about them since the tree was
frozen at that time.

Revision 1.24 / (download) - annotate - [select for diffs], Sat Jul 29 00:58:24 2000 UTC (23 years, 10 months ago) by marc
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.23: +30 -14 lines
Diff to previous 1.23 (colored)


Note that ddb must be enabled with sysctl before it can be used.
Prodding from Gregory Steuck <greg@nest.cx> who looked in the man
page for that info

Revision 1.23 / (download) - annotate - [select for diffs], Sun Jul 9 20:56:29 2000 UTC (23 years, 11 months ago) by aaron
Branch: MAIN
Changes since 1.22: +69 -41 lines
Diff to previous 1.22 (colored)

Many formatting fixes.

Revision 1.22 / (download) - annotate - [select for diffs], Sun Jul 2 02:44:04 2000 UTC (23 years, 11 months ago) by ericj
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

fix spelling

Revision 1.21 / (download) - annotate - [select for diffs], Fri Jun 9 23:05:19 2000 UTC (24 years ago) by mickey
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

right order of operation for boot dump; from Grigoriy Orlov <gluk@ptci.ru>

Revision 1.20 / (download) - annotate - [select for diffs], Wed Jun 7 11:30:49 2000 UTC (24 years ago) by art
Branch: MAIN
Changes since 1.19: +7 -2 lines
Diff to previous 1.19 (colored)

Document the optional address argument to 'show malloc'.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Jun 7 09:44:27 2000 UTC (24 years ago) by art
Branch: MAIN
Changes since 1.18: +4 -1 lines
Diff to previous 1.18 (colored)

Document 'show malloc'.

Revision 1.18 / (download) - annotate - [select for diffs], Sat Apr 15 11:45:51 2000 UTC (24 years, 1 month ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

- For consistency, `super-user' -> `superuser' in all cases.
- Some punctuation fixes.
- Some `id' -> `ID'.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Sep 21 22:30:08 1999 UTC (24 years, 8 months ago) by d
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.16: +7 -4 lines
Diff to previous 1.16 (colored)

grammar. ok aaron@

Revision 1.16 / (download) - annotate - [select for diffs], Sun Sep 5 16:20:15 1999 UTC (24 years, 9 months ago) by espie
Branch: MAIN
Changes since 1.15: +6 -2 lines
Diff to previous 1.15 (colored)

Document show extents

Revision 1.15 / (download) - annotate - [select for diffs], Fri Jul 9 13:35:48 1999 UTC (24 years, 11 months ago) by aaron
Branch: MAIN
Changes since 1.14: +19 -19 lines
Diff to previous 1.14 (colored)

- remove all trailing whitespace
     * except when it is escaped with a `\' at the end of the line
- fix remaining .Nm usage as well
- this is from a patch I received from kwesterback@home.com, who has been
  working on some scripts for fixing formatting errors in mdoc'd man pages

Ok, so there could be a cost/benefit debate with this commit, but since I have
the patch we might as well commit it...

Revision 1.14 / (download) - annotate - [select for diffs], Sun May 16 19:56:21 1999 UTC (25 years ago) by alex
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored)

Cleanup xrefs under SEE ALSO.  Specifically:

  - Sort xrefs by section, and then alphabetically.
  - Add missing commas between xref items.
  - Remove commas from the last xref entry.
  - Remove duplicate entries.

Revision 1.13 / (download) - annotate - [select for diffs], Tue Feb 23 10:58:28 1999 UTC (25 years, 3 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

Spell `algorithm' (no, it's not derived from the greek `algo', and `rythm',
however painful it may be)

Revision 1.12 / (download) - annotate - [select for diffs], Tue Sep 1 16:38:20 1998 UTC (25 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

more man page fixes; aaron@ug.cs.dal.ca

Revision 1.11 / (download) - annotate - [select for diffs], Fri Jun 12 12:01:11 1998 UTC (26 years ago) by d
Branch: MAIN
Changes since 1.10: +662 -244 lines
Diff to previous 1.10 (colored)

clean, doco more commands

Revision 1.10 / (download) - annotate - [select for diffs], Wed Dec 10 06:15:54 1997 UTC (26 years, 6 months ago) by gene
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

hangman 'stands' for something not 'stays'; pointed out by ficus.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Nov 4 21:16:31 1997 UTC (26 years, 7 months ago) by chuck
Branch: MAIN
Changes since 1.8: +14 -13 lines
Diff to previous 1.8 (colored)

update docs on "ps" (show all procs) cmd

Revision 1.8 / (download) - annotate - [select for diffs], Mon Oct 13 04:32:15 1997 UTC (26 years, 8 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.7: +3 -1 lines
Diff to previous 1.7 (colored)

use sublist for 'x /I' description

Revision 1.7 / (download) - annotate - [select for diffs], Sun Jul 6 19:46:10 1997 UTC (26 years, 11 months ago) by mickey
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

proper OpenBSD macros

Revision 1.6 / (download) - annotate - [select for diffs], Sun Jun 15 02:05:59 1997 UTC (26 years, 11 months ago) by mickey
Branch: MAIN
Changes since 1.5: +42 -12 lines
Diff to previous 1.5 (colored)

move towards completeness

Revision 1.5 / (download) - annotate - [select for diffs], Thu Jun 12 02:55:48 1997 UTC (27 years ago) by mickey
Branch: MAIN
Changes since 1.4: +12 -1 lines
Diff to previous 1.4 (colored)

man boot&hangman

Revision 1.4 / (download) - annotate - [select for diffs], Wed Jun 11 23:33:40 1997 UTC (27 years ago) by deraadt
Branch: MAIN
Changes since 1.3: +3 -1 lines
Diff to previous 1.3 (colored)

.Xr

Revision 1.3 / (download) - annotate - [select for diffs], Wed Jun 4 07:04:31 1997 UTC (27 years ago) by mickey
Branch: MAIN
Changes since 1.2: +1 -1 lines
Diff to previous 1.2 (colored)

typo

Revision 1.2 / (download) - annotate - [select for diffs], Sat May 4 15:22:53 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1, OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.1: +111 -153 lines
Diff to previous 1.1 (colored)

converted to mandoc

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:44:24 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:44:24 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.