OpenBSD CVS

CVS log for src/usr.bin/pmdb/Attic/pmdb.c


[BACK] Up to [local] / src / usr.bin / pmdb

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.23, Thu Aug 30 15:53:47 2012 UTC (11 years, 8 months ago) by kettenis
Branch: MAIN
CVS Tags: HEAD
Changes since 1.22: +1 -1 lines
FILE REMOVED

Move pmdb to the attic.

It's unfinished.  It will never be finished.
It's unfinishable.  deraadt@

Revision 1.22 / (download) - annotate - [select for diffs], Thu May 1 21:18:13 2008 UTC (16 years ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.21: +4 -1 lines
Diff to previous 1.21 (colored)

In the main loop, do not call wait() if there is no child process yet;
misinterpreting the ``returned'' status could lead to segfauts, as reported
by ``Filth'' (hygdrasil, gmail dot com)

ok deraadt@

Revision 1.21 / (download) - annotate - [select for diffs], Mon Aug 6 19:16:05 2007 UTC (16 years, 9 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

the ellipsis is not an optional argument; while here, sync the usage
and synopsis of commands

lots of good ideas by jmc@

ok jmc@

Revision 1.20 / (download) - annotate - [select for diffs], Wed Dec 20 06:45:10 2006 UTC (17 years, 5 months ago) by steven
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.19: +1 -2 lines
Diff to previous 1.19 (colored)

remove unneeded #include

ok mbalmer@ deraadt@

Revision 1.19 / (download) - annotate - [select for diffs], Mon Aug 18 17:55:57 2003 UTC (20 years, 9 months ago) by jfb
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.18: +65 -4 lines
Diff to previous 1.18 (colored)

when given only an executable name without a valid path, resolve the
actual executable path from the PATH environment, so the calls to access()
and stat() work correctly when loading the process

ok art@

Revision 1.18 / (download) - annotate - [select for diffs], Sat Aug 2 20:38:38 2003 UTC (20 years, 9 months ago) by mickey
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

check return value from process_{read,write} proper

Revision 1.17 / (download) - annotate - [select for diffs], Tue Jun 10 22:20:49 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

mostly ansi cleanup; pval ok

Revision 1.16 / (download) - annotate - [select for diffs], Thu May 15 00:11:03 2003 UTC (21 years ago) by jfb
Branch: MAIN
Changes since 1.15: +1 -28 lines
Diff to previous 1.15 (colored)

Get rid of read_from_pid() and write_to_pid(), they were
replaced by the more generic process_read() and process_write()

ok art@

Revision 1.15 / (download) - annotate - [select for diffs], Sat Apr 5 18:16:21 2003 UTC (21 years, 1 month ago) by pvalchev
Branch: MAIN
Changes since 1.14: +3 -1 lines
Diff to previous 1.14 (colored)

free value after asprintf; ok art

Revision 1.14 / (download) - annotate - [select for diffs], Sat Mar 29 00:03:00 2003 UTC (21 years, 1 month ago) by mickey
Branch: MAIN
Changes since 1.13: +33 -1 lines
Diff to previous 1.13 (colored)

implement memory examine command. takes both symbol or address

Revision 1.13 / (download) - annotate - [select for diffs], Fri Mar 28 23:33:27 2003 UTC (21 years, 1 month ago) by mickey
Branch: MAIN
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

do not core dump on stripped executables. revmap the registers printed to the symbols even for cores (already happens for live executables); art@ said it should wait until after the release and so it is already after the release now

Revision 1.12 / (download) - annotate - [select for diffs], Thu Aug 8 18:27:57 2002 UTC (21 years, 9 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored)

implement setenv.

Revision 1.11 / (download) - annotate - [select for diffs], Mon Jul 22 23:26:05 2002 UTC (21 years, 10 months ago) by fgsch
Branch: MAIN
Changes since 1.10: +4 -5 lines
Diff to previous 1.10 (colored)

check argc after getopt(), otherwise we may go ahead even if we only got
flags; from Jean-Francois Brousseau <krapht@secureops.com>.

Revision 1.10 / (download) - annotate - [select for diffs], Mon Jul 22 01:20:50 2002 UTC (21 years, 10 months ago) by art
Branch: MAIN
Changes since 1.9: +6 -5 lines
Diff to previous 1.9 (colored)

Support for reading from core files.
From Jean-Francois Brousseau <krapht@secureops.com>

Revision 1.9 / (download) - annotate - [select for diffs], Sun Jun 9 04:33:42 2002 UTC (21 years, 11 months ago) by fgsch
Branch: MAIN
Changes since 1.8: +8 -7 lines
Diff to previous 1.8 (colored)

some knf.

Revision 1.8 / (download) - annotate - [select for diffs], Sun Jun 9 02:44:13 2002 UTC (21 years, 11 months ago) by todd
Branch: MAIN
Changes since 1.7: +21 -8 lines
Diff to previous 1.7 (colored)

provide '-p <pid>' (process attach); thanks to
Jean-Francois Brousseau <krapht@secureops.com>

Revision 1.7 / (download) - annotate - [select for diffs], Wed Jun 5 18:02:27 2002 UTC (21 years, 11 months ago) by fgsch
Branch: MAIN
Changes since 1.6: +47 -15 lines
Diff to previous 1.6 (colored)

core support from Jean-Francois Brousseau <krapht@secureops.com> with
a few tweaks of mine. tested on sparc64 and i386.

Revision 1.6 / (download) - annotate - [select for diffs], Tue Mar 19 23:17:58 2002 UTC (22 years, 2 months ago) by fgsch
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.5: +7 -7 lines
Diff to previous 1.5 (colored)

o don't need a var to keep the number of commands; use a define.
o remove extra arg after dale commit.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Mar 19 23:10:57 2002 UTC (22 years, 2 months ago) by drahn
Branch: MAIN
Changes since 1.4: +7 -2 lines
Diff to previous 1.4 (colored)

Do not print offset if no symbol found for address. ok art@

Revision 1.4 / (download) - annotate - [select for diffs], Fri Mar 15 18:21:20 2002 UTC (22 years, 2 months ago) by art
Branch: MAIN
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored)

Oops. Adapt to one more change in PT_IO.

Revision 1.3 / (download) - annotate - [select for diffs], Fri Mar 15 18:04:41 2002 UTC (22 years, 2 months ago) by art
Branch: MAIN
Changes since 1.2: +4 -1 lines
Diff to previous 1.2 (colored)

Add a command 'sym_load' to load a symbol table at some offset.
We are in a desperate need of a better command line interface, the top level
is starting to get crowded.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Mar 15 16:41:06 2002 UTC (22 years, 2 months ago) by jason
Branch: MAIN
Changes since 1.1: +1 -1 lines
Diff to previous 1.1 (colored)

s/$PMDB$/$OpenBSD$/

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Mar 15 16:30:32 2002 UTC (22 years, 2 months ago) by art
Branch: PMBD_4_1
CVS Tags: PMDB
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Import pmdb 4.1.

(see http://www.blahonga.org/~art/openbsd/pmdb.html for more info).

The development repository now moves here out from my local repository.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Mar 15 16:30:32 2002 UTC (22 years, 2 months ago) by art
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.