The NetBSD Project

CVS log for src/usr.bin/kdump/kdump.c

[BACK] Up to [cvs.NetBSD.org] / src / usr.bin / kdump

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.140.2.2: download - view: text, markup, annotated - select for diffs
Mon Mar 25 15:15:20 2024 UTC (8 months, 1 week ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RELEASE
Diff to: previous 1.140.2.1: preferred, colored; branchpoint 1.140: preferred, colored; next MAIN 1.141: preferred, colored
Changes since revision 1.140.2.1: +2 -3 lines
Pull up following revision(s) (requested by kre in ticket #641):

	usr.bin/kdump/kdump.c: revision 1.145

Remove debug print

Revision 1.145: download - view: text, markup, annotated - select for diffs
Sat Mar 16 23:40:25 2024 UTC (8 months, 2 weeks ago) by ryoon
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, HEAD
Diff to: previous 1.144: preferred, colored
Changes since revision 1.144: +2 -3 lines
Remove debug print

Revision 1.140.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 12 10:13:05 2024 UTC (8 months, 3 weeks ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RC6
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +218 -36 lines
Pull up following revision(s) (requested by kre in ticket #635):

	usr.bin/kdump/kdump.c: revision 1.141
	usr.bin/kdump/kdump.c: revision 1.142
	usr.bin/kdump/kdump.c: revision 1.143
	usr.bin/kdump/kdump.c: revision 1.144

PR/57918: Taylor R Campbell: Don't try to print symbolically ioctls that
have bits set on the high 32 bits of a 64 bit long.

PR bin/57918

Redo the previous correctly, the test should be whether or not only the
bottom 32 bits are set, rather than whether any of bits 32..63 are set.

This makes no difference if u_long (or unsigned long long) is 64 bits,
it is the same test in that case, but if u_long were 128 bits there is
a notable difference (though for the particular issue observed in the PR,
it is likely to work either way).
decode some {g,s}etsockopt*.

kdump: keep the comment with its corresponding code
No binary change.

Revision 1.144: download - view: text, markup, annotated - select for diffs
Sun Mar 10 18:54:41 2024 UTC (8 months, 3 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +8 -7 lines
kdump: keep the comment with its corresponding code

No binary change.

Revision 1.143: download - view: text, markup, annotated - select for diffs
Sun Mar 10 17:08:31 2024 UTC (8 months, 3 weeks ago) by christos
Branches: MAIN
Diff to: previous 1.142: preferred, colored
Changes since revision 1.142: +209 -33 lines
decode some {g,s}etsockopt*.

Revision 1.142: download - view: text, markup, annotated - select for diffs
Sun Feb 11 01:08:57 2024 UTC (9 months, 3 weeks ago) by kre
Branches: MAIN
Diff to: previous 1.141: preferred, colored
Changes since revision 1.141: +3 -3 lines
PR bin/57918

Redo the previous correctly, the test should be whether or not only the
bottom 32 bits are set, rather than whether any of bits 32..63 are set.
This makes no difference if u_long (or unsigned long long) is 64 bits,
it is the same test in that case, but if u_long were 128 bits there is
a notable difference (though for the particular issue observed in the PR,
it is likely to work either way).

Revision 1.141: download - view: text, markup, annotated - select for diffs
Sat Feb 10 12:53:36 2024 UTC (9 months, 3 weeks ago) by christos
Branches: MAIN
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +7 -2 lines
PR/57918: Taylor R Campbell: Don't try to print symbolically ioctls that
have bits set on the high 32 bits of a 64 bit long.

Revision 1.140: download - view: text, markup, annotated - select for diffs
Sun Jun 20 00:25:29 2021 UTC (3 years, 5 months ago) by chs
Branches: MAIN
CVS tags: netbsd-10-base, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1
Branch point for: netbsd-10
Diff to: previous 1.139: preferred, colored
Changes since revision 1.139: +3 -3 lines
fix printf format string for xattr names (the length of the xattr name
needs to be a precision rather than a width).

Revision 1.139: download - view: text, markup, annotated - select for diffs
Thu Apr 30 15:12:25 2020 UTC (4 years, 7 months ago) by martin
Branches: MAIN
CVS tags: cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Diff to: previous 1.138: preferred, colored
Changes since revision 1.138: +3 -3 lines
futexput: cast the mask to u_long (as the op already is)

Revision 1.138: download - view: text, markup, annotated - select for diffs
Thu Apr 30 12:17:01 2020 UTC (4 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.137: preferred, colored
Changes since revision 1.137: +75 -2 lines
Decode futex op codes.

Revision 1.130.2.4: download - view: text, markup, annotated - select for diffs
Tue Apr 21 18:42:47 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.130.2.3: preferred, colored; branchpoint 1.130: preferred, colored; next MAIN 1.131: preferred, colored
Changes since revision 1.130.2.3: +33 -0 lines
Sync with HEAD

Revision 1.137: download - view: text, markup, annotated - select for diffs
Mon Apr 20 00:35:41 2020 UTC (4 years, 7 months ago) by christos
Branches: MAIN
CVS tags: phil-wifi-20200421
Diff to: previous 1.136: preferred, colored
Changes since revision 1.136: +35 -2 lines
Understand xattr ktruser records

Revision 1.130.2.3: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:05:43 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.130.2.2: preferred, colored; branchpoint 1.130: preferred, colored
Changes since revision 1.130.2.2: +22 -0 lines
Mostly merge changes from HEAD upto 20200411

Revision 1.130.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:09:16 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.130.2.1: preferred, colored; branchpoint 1.130: preferred, colored
Changes since revision 1.130.2.1: +125 -9 lines
Merge changes from current as of 20200406

Revision 1.136: download - view: text, markup, annotated - select for diffs
Fri Apr 3 06:13:07 2020 UTC (4 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: phil-wifi-20200411, phil-wifi-20200406
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +3 -3 lines
Update usage for ioctlprint.

Revision 1.135: download - view: text, markup, annotated - select for diffs
Thu Apr 2 17:41:34 2020 UTC (4 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.134: preferred, colored
Changes since revision 1.134: +2 -2 lines
Add the ability to:
1. list all ioctls (-l)
2. print the internal definition symbolically
3. search by name

$ ioctlprint -f "%n %E %e\n" TIOCGETA
TIOCGETA _IOR('t', 19, struct termios) _IOR('t',0x13,0x2c)

Revision 1.134: download - view: text, markup, annotated - select for diffs
Thu Apr 2 17:40:33 2020 UTC (4 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +68 -20 lines
*** empty log message ***

Revision 1.133: download - view: text, markup, annotated - select for diffs
Thu Apr 2 03:32:46 2020 UTC (4 years, 8 months ago) by kamil
Branches: MAIN
Diff to: previous 1.132: preferred, colored
Changes since revision 1.132: +76 -8 lines
Add ioctlprint - descriptive ioctl value printer

ioctlprint(1) is embedded in the kdump(1) program.

Revision 1.132: download - view: text, markup, annotated - select for diffs
Tue Jul 23 01:54:51 2019 UTC (5 years, 4 months ago) by nonaka
Branches: MAIN
CVS tags: phil-wifi-20191119, netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, is-mlppp-base, is-mlppp
Diff to: previous 1.131: preferred, colored
Changes since revision 1.131: +24 -2 lines
kdump(1): Symbolic printing for MALLOC_OPTIONS="U".

Revision 1.130.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:10:20 2019 UTC (5 years, 5 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +2 -4 lines
Sync with HEAD

Revision 1.131: download - view: text, markup, annotated - select for diffs
Mon May 6 19:20:13 2019 UTC (5 years, 6 months ago) by christos
Branches: MAIN
CVS tags: phil-wifi-20190609
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +2 -4 lines
You don't have to be _LP64 to run 32 bit binaries. You can be mips (64 bit
kernel/32 bit userland).

Revision 1.129.2.1: download - view: text, markup, annotated - select for diffs
Wed May 2 07:20:27 2018 UTC (6 years, 7 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.129: preferred, colored; next MAIN 1.130: preferred, colored
Changes since revision 1.129: +45 -26 lines
Synch with HEAD

Revision 1.130: download - view: text, markup, annotated - select for diffs
Sun Apr 29 18:00:31 2018 UTC (6 years, 7 months ago) by christos
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502
Branch point for: phil-wifi
Diff to: previous 1.129: preferred, colored
Changes since revision 1.129: +45 -26 lines
print the mprotect perm argument symbolically.

Revision 1.129: download - view: text, markup, annotated - select for diffs
Sun Sep 10 10:09:40 2017 UTC (7 years, 2 months ago) by wiz
Branches: MAIN
CVS tags: pgoyette-compat-base, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315
Branch point for: pgoyette-compat
Diff to: previous 1.128: preferred, colored
Changes since revision 1.128: +3 -3 lines
Sync usage with man page.

Revision 1.128: download - view: text, markup, annotated - select for diffs
Fri Sep 8 21:45:08 2017 UTC (7 years, 2 months ago) by uwe
Branches: MAIN
Diff to: previous 1.127: preferred, colored
Changes since revision 1.127: +35 -8 lines
Print negative time offsets correctly.  Provide an exegetical quote
from riastradh@, slightly edited to fit the metre.

Revision 1.127: download - view: text, markup, annotated - select for diffs
Fri Sep 8 21:09:29 2017 UTC (7 years, 2 months ago) by uwe
Branches: MAIN
Diff to: previous 1.126: preferred, colored
Changes since revision 1.126: +38 -14 lines
Option -E to display elapsed timestamps (time since beginning of trace).

Option name from FreeBSD.  While here, make it possible to use a
combination of -T -E and -R to display timestamps in several formats.
Idea also from FreeBSD.

Revision 1.126: download - view: text, markup, annotated - select for diffs
Fri Sep 8 20:36:56 2017 UTC (7 years, 2 months ago) by uwe
Branches: MAIN
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +20 -67 lines
Drop support for KTRFACv0 (NetBSD 3) and KTRFACv1 (NetBSD 5).
Note that on 32-bit platforms it probably never worked anyway because
header size changed from v1 to v2 when time_t became 64 bit.

ok christos@
CVS: ----------------------------------------------------------------------
CVS: CVSROOT  cvs.NetBSD.org:/cvsroot
CVS: please use "PR category/123" to have the commitmsg appended to PR 123
CVS:
CVS: Please evaluate your changes and consider the following.
CVS: Abort checkin if you answer no.
CVS: => For all changes:
CVS: Do the changed files compile?
CVS: Has the change been tested?
CVS: => If you are not completely familiar with the changed components:
CVS: Has the change been posted for review?
CVS: Have you allowed enough time for feedback?
CVS: => If the change is major:
CVS: => If the change adds files to, or removes files from $DESTDIR:
CVS: => If you are changing a library or kernel interface:
CVS: Have you successfully run "./build.sh release"?

Revision 1.125: download - view: text, markup, annotated - select for diffs
Mon Sep 5 00:40:29 2016 UTC (8 years, 2 months ago) by sevan
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Diff to: previous 1.124: preferred, colored
Changes since revision 1.124: +2 -3 lines
Drop main() prototype.

Revision 1.124: download - view: text, markup, annotated - select for diffs
Wed Jun 1 00:47:16 2016 UTC (8 years, 6 months ago) by christos
Branches: MAIN
CVS tags: pgoyette-localcount-base, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount
Diff to: previous 1.123: preferred, colored
Changes since revision 1.123: +40 -3 lines
Symbolic printing for mmap

Revision 1.123: download - view: text, markup, annotated - select for diffs
Sun Mar 27 21:51:20 2016 UTC (8 years, 8 months ago) by alnsn
Branches: MAIN
Diff to: previous 1.122: preferred, colored
Changes since revision 1.122: +7 -6 lines
Don't enter infinite loop on big ktr_len values.

Fixes PR 49460.

Revision 1.122: download - view: text, markup, annotated - select for diffs
Mon Jan 4 08:24:42 2016 UTC (8 years, 11 months ago) by martin
Branches: MAIN
Diff to: previous 1.121: preferred, colored
Changes since revision 1.121: +3 -3 lines
Cast register_t to unsigned long before printf'ing it with %lx.

Revision 1.121: download - view: text, markup, annotated - select for diffs
Sun Jan 3 22:05:18 2016 UTC (8 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.120: preferred, colored
Changes since revision 1.120: +40 -2 lines
be a bit smarter about fcntl

Revision 1.120: download - view: text, markup, annotated - select for diffs
Wed Jun 17 00:01:59 2015 UTC (9 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.119: preferred, colored
Changes since revision 1.119: +3 -3 lines
more stray \n

Revision 1.119: download - view: text, markup, annotated - select for diffs
Tue Jun 16 22:54:10 2015 UTC (9 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +3 -3 lines
fix some error handling.

Revision 1.115.8.2: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:04:59 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.115.8.1: preferred, colored; branchpoint 1.115: preferred, colored; next MAIN 1.116: preferred, colored
Changes since revision 1.115.8.1: +9 -10 lines
Rebase to HEAD as of a few days ago.

Revision 1.117.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:58:18 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.117: preferred, colored; next MAIN 1.118: preferred, colored
Changes since revision 1.117: +8 -9 lines
Rebase.

Revision 1.115.2.2: download - view: text, markup, annotated - select for diffs
Thu May 22 11:42:45 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.115.2.1: preferred, colored; branchpoint 1.115: preferred, colored; next MAIN 1.116: preferred, colored
Changes since revision 1.115.2.1: +9 -10 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.118: download - view: text, markup, annotated - select for diffs
Wed Apr 30 11:51:51 2014 UTC (10 years, 7 months ago) by njoly
Branches: MAIN
CVS tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +8 -9 lines
Fix compat netbsd32 syscall return values display by calling
output_long() instead of printf().

Revision 1.117: download - view: text, markup, annotated - select for diffs
Wed Nov 27 20:27:58 2013 UTC (11 years ago) by christos
Branches: MAIN
CVS tags: riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3
Branch point for: tls-earlyentropy
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +3 -3 lines
PR/48413: Inappropriate sign extension in kdump output

Revision 1.115.8.1: download - view: text, markup, annotated - select for diffs
Mon Feb 25 00:30:36 2013 UTC (11 years, 9 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +4 -5 lines
resync with head

Revision 1.115.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:06:38 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +4 -5 lines
sync with head

Revision 1.116: download - view: text, markup, annotated - select for diffs
Wed Jan 2 19:39:04 2013 UTC (11 years, 11 months ago) by dsl
Branches: MAIN
CVS tags: yamt-pagecache-base8, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, agc-symver-base, agc-symver
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +4 -5 lines
Only expose the bulk of sys/proc.h and sys/lwp.h if _KERNEL or _KMEMUSER
is defined.
i386 and amd64 build ok.

Revision 1.115: download - view: text, markup, annotated - select for diffs
Wed Sep 28 16:28:27 2011 UTC (13 years, 2 months ago) by christos
Branches: MAIN
CVS tags: yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Branch point for: yamt-pagecache, tls-maxphys
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +3 -7 lines
don't limit sockets to sizeof(sizeof sockaddr_storage). We can create valid
sockaddr_un sockets that exceed that. Arguably either
sizeof(struct sockaddr_storage) should be amended, or we should disallow
unix domain sockaddrs that exceed that size.

Revision 1.114: download - view: text, markup, annotated - select for diffs
Wed Sep 21 17:48:53 2011 UTC (13 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +73 -8 lines
Symbolic printing of some known MISC records.

Revision 1.113: download - view: text, markup, annotated - select for diffs
Fri Sep 2 20:11:42 2011 UTC (13 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +7 -11 lines
- use PT_STRINGS
- use __arraycount()

Revision 1.111.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 23 14:20:43 2011 UTC (13 years, 5 months ago) by cherry
Branches: cherry-xenmp
Diff to: previous 1.111: preferred, colored; next MAIN 1.112: preferred, colored
Changes since revision 1.111: +21 -2 lines
Catchup with rmind-uvmplock merge.

Revision 1.112: download - view: text, markup, annotated - select for diffs
Wed Jun 1 21:28:32 2011 UTC (13 years, 6 months ago) by alnsn
Branches: MAIN
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +21 -2 lines
kern/42030 - tracking of file descriptors by ktrace/kdump

Revision 1.111: download - view: text, markup, annotated - select for diffs
Wed Apr 27 00:00:47 2011 UTC (13 years, 7 months ago) by joerg
Branches: MAIN
CVS tags: cherry-xenmp-base
Branch point for: cherry-xenmp
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +2 -46 lines
Remove Mach specific trace points.

Revision 1.110: download - view: text, markup, annotated - select for diffs
Tue Apr 26 15:51:32 2011 UTC (13 years, 7 months ago) by joerg
Branches: MAIN
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +5 -12 lines
Remove Darwin, MACH and Mach-O support.

Revision 1.109: download - view: text, markup, annotated - select for diffs
Sun Apr 10 16:06:59 2011 UTC (13 years, 7 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +3 -3 lines
Fix string constant so it compiles again.

Revision 1.108: download - view: text, markup, annotated - select for diffs
Sun Apr 10 14:38:19 2011 UTC (13 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +4 -5 lines
we don't have access to si_lid anymore.

Revision 1.107: download - view: text, markup, annotated - select for diffs
Sun Apr 10 00:05:51 2011 UTC (13 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +11 -8 lines
print detailed info about other SI_ codes.

Revision 1.106: download - view: text, markup, annotated - select for diffs
Mon Jan 10 05:15:17 2011 UTC (13 years, 10 months ago) by christos
Branches: MAIN
CVS tags: bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +7 -7 lines
format SI_QUEUE properly.

Revision 1.105: download - view: text, markup, annotated - select for diffs
Sun Aug 8 18:31:50 2010 UTC (14 years, 3 months ago) by chs
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +6 -3 lines
fix emul state tracking for exit vs exit_group on linux.

Revision 1.102.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 19:19:53 2009 UTC (15 years, 6 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.102: preferred, colored; next MAIN 1.103: preferred, colored
Changes since revision 1.102: +49 -16 lines
Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html

Revision 1.104: download - view: text, markup, annotated - select for diffs
Mon Apr 13 14:39:23 2009 UTC (15 years, 7 months ago) by christos
Branches: MAIN
CVS tags: matt-premerge-20091211, jym-xensuspend-nbase, jym-xensuspend-base
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +42 -9 lines
Allow kdump to be used as an ioctl decoder if invoked as ioctlname.

Revision 1.103: download - view: text, markup, annotated - select for diffs
Sun Apr 12 11:23:12 2009 UTC (15 years, 7 months ago) by lukem
Branches: MAIN
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +9 -9 lines
fix sign-compare issues

Revision 1.102: download - view: text, markup, annotated - select for diffs
Sun Jan 11 03:05:41 2009 UTC (15 years, 10 months ago) by christos
Branches: MAIN
Branch point for: jym-xensuspend
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +2 -6 lines
resolve conflict.

Revision 1.101: download - view: text, markup, annotated - select for diffs
Sun Jan 11 03:05:23 2009 UTC (15 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +51 -16 lines
merge christos-time_t

Revision 1.100: download - view: text, markup, annotated - select for diffs
Fri Jan 2 13:57:23 2009 UTC (15 years, 11 months ago) by njoly
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +5 -2 lines
Add minimal SI_LWP support.

Revision 1.99.6.2: download - view: text, markup, annotated - select for diffs
Mon Dec 29 01:23:13 2008 UTC (15 years, 11 months ago) by christos
Branches: christos-time_t
Diff to: previous 1.99.6.1: preferred, colored; branchpoint 1.99: preferred, colored; next MAIN 1.100: preferred, colored
Changes since revision 1.99.6.1: +1065 -0 lines
update for version 2

Revision 1.96.4.3: download - view: text, markup, annotated - select for diffs
Wed Sep 24 16:38:59 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.96.4.2: preferred, colored; branchpoint 1.96: preferred, colored; next MAIN 1.97: preferred, colored
Changes since revision 1.96.4.2: +7 -2 lines
Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.

Revision 1.96.4.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:29:13 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.96.4.1: preferred, colored; branchpoint 1.96: preferred, colored
Changes since revision 1.96.4.1: +4 -4 lines
Sync with wrstuden-revivesa-base-2.

Revision 1.99.6.1
Fri Sep 12 20:46:42 2008 UTC (16 years, 2 months ago) by christos
Branches: christos-time_t
FILE REMOVED
Changes since revision 1.99: +0 -1034 lines
file kdump.c was added on branch christos-time_t on 2008-12-29 01:23:13 +0000

Revision 1.99: download - view: text, markup, annotated - select for diffs
Fri Sep 12 20:46:42 2008 UTC (16 years, 2 months ago) by christos
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, christos-time_t-base
Branch point for: christos-time_t
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +7 -2 lines
handle SI_NOINFO

Revision 1.98: download - view: text, markup, annotated - select for diffs
Mon Jul 21 14:19:23 2008 UTC (16 years, 4 months ago) by lukem
Branches: MAIN
CVS tags: wrstuden-revivesa-base-2
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +4 -4 lines
Remove the \n and tabs from the __COPYRIGHT() strings.
Tweak to use a consistent format.

Revision 1.96.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:32:11 2008 UTC (16 years, 5 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +4 -3 lines
Sync w/ -current. 34 merge conflicts to follow.

Revision 1.97: download - view: text, markup, annotated - select for diffs
Wed Jun 18 23:04:52 2008 UTC (16 years, 5 months ago) by njoly
Branches: MAIN
CVS tags: wrstuden-revivesa-base-1, wrstuden-revivesa-base
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +4 -3 lines
Output linux ptrace request name for processes under compat linux32
emulation too.

Revision 1.95.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 24 07:16:34 2008 UTC (16 years, 8 months ago) by keiichi
Branches: keiichi-mipv6
Diff to: previous 1.95: preferred, colored; next MAIN 1.96: preferred, colored
Changes since revision 1.95: +3 -2 lines
sync with head.

Revision 1.93.2.2: download - view: text, markup, annotated - select for diffs
Sun Mar 23 00:49:01 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.93.2.1: preferred, colored; branchpoint 1.93: preferred, colored; next MAIN 1.94: preferred, colored
Changes since revision 1.93.2.1: +3 -2 lines
sync with HEAD

Revision 1.96: download - view: text, markup, annotated - select for diffs
Fri Feb 29 22:45:36 2008 UTC (16 years, 9 months ago) by njoly
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +3 -2 lines
Add a few NULL entries to linux_ptrace_ops[], to make PTRACE_SYSCALL
string appear at the expected indice 24.

Revision 1.93.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 9 02:00:44 2008 UTC (16 years, 10 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +6 -6 lines
sync with HEAD

Revision 1.95: download - view: text, markup, annotated - select for diffs
Sat Dec 15 19:44:51 2007 UTC (16 years, 11 months ago) by perry
Branches: MAIN
CVS tags: matt-armv6-base, hpcarm-cleanup-base
Branch point for: keiichi-mipv6
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +3 -3 lines
convert __attribute__s to applicable cdefs.h macros

Revision 1.94: download - view: text, markup, annotated - select for diffs
Wed Nov 7 22:22:31 2007 UTC (17 years ago) by dsl
Branches: MAIN
CVS tags: cube-autoconf-base, cube-autoconf
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +5 -5 lines
Apply the -N (show syscalls by number) to the system return trace.
Change 'USER' to 'MISC' since they get used for misc kernel traces as well.

Revision 1.93: download - view: text, markup, annotated - select for diffs
Wed Aug 8 20:28:11 2007 UTC (17 years, 3 months ago) by agc
Branches: MAIN
CVS tags: matt-armv6-prevmlocking
Branch point for: matt-armv6
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +3 -3 lines
Apply fix from PR 35283 from David Holland:

ensure that kdump properly escapes newlines in argv

Revision 1.92: download - view: text, markup, annotated - select for diffs
Fri Jun 1 19:05:50 2007 UTC (17 years, 6 months ago) by dsl
Branches: MAIN
CVS tags: matt-mips64-base, matt-mips64, hpcarm-cleanup
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +13 -6 lines
When displaying 'KTR_USER' data, exclude the header from the length, don't
enclose in ", and output using the hexdump function if -x (or -X) given.

Revision 1.91: download - view: text, markup, annotated - select for diffs
Mon May 21 19:29:44 2007 UTC (17 years, 6 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +3 -3 lines
fallout from si_sigval -> si_value

Revision 1.90: download - view: text, markup, annotated - select for diffs
Mon Mar 19 18:51:09 2007 UTC (17 years, 8 months ago) by njoly
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +8 -3 lines
When decoding ioctl commands type; do not output non printable
characters, but the corresponding hexadecimal values.

ok by christos

Revision 1.87.2.1: download - view: text, markup, annotated - select for diffs
Fri Feb 16 20:21:13 2007 UTC (17 years, 9 months ago) by riz
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0
Diff to: previous 1.87: preferred, colored; next MAIN 1.88: preferred, colored
Changes since revision 1.87: +4 -4 lines
Pull up following revision(s) (requested by chs in ticket #420):
	usr.bin/kdump/kdump.c: revision 1.88
skip over the "self" sa when printing upcalls.

Revision 1.89: download - view: text, markup, annotated - select for diffs
Fri Feb 9 22:08:48 2007 UTC (17 years, 9 months ago) by ad
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +2 -46 lines
Sync with kernel changes introduced by merging the newlock2 branch.

Revision 1.88: download - view: text, markup, annotated - select for diffs
Sun Jan 28 21:29:59 2007 UTC (17 years, 10 months ago) by chs
Branches: MAIN
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +4 -4 lines
skip over the "self" sa when printing upcalls.

Revision 1.87: download - view: text, markup, annotated - select for diffs
Mon Oct 23 04:13:51 2006 UTC (18 years, 1 month ago) by mrg
Branches: MAIN
CVS tags: netbsd-4-base
Branch point for: netbsd-4
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +4 -4 lines
since register_t is sometimes unsigned, cast to (long) to check >= 0.

Revision 1.86: download - view: text, markup, annotated - select for diffs
Sat Sep 23 22:01:04 2006 UTC (18 years, 2 months ago) by manu
Branches: MAIN
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +22 -3 lines
Add a -t+S flag to ktrace for tracing activity related to sysctl. MIB
names will be displayed, with data readen and written as well.

Revision 1.85: download - view: text, markup, annotated - select for diffs
Wed Apr 5 00:50:59 2006 UTC (18 years, 8 months ago) by christos
Branches: MAIN
CVS tags: chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base, abandoned-netbsd-4
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +3 -3 lines
Use the standard macros to compute the ioctl length instead of rolling our
own. Thanks to Chuck for noticing.

Revision 1.84: download - view: text, markup, annotated - select for diffs
Sun Mar 5 17:03:19 2006 UTC (18 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +3 -3 lines
Add PT_SYSCALL

Revision 1.83: download - view: text, markup, annotated - select for diffs
Sun Dec 11 11:31:34 2005 UTC (18 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +85 -13 lines
Learn about v1 records and sa upcalls.

Revision 1.82: download - view: text, markup, annotated - select for diffs
Tue Oct 18 01:49:18 2005 UTC (19 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +11 -3 lines
Print symbolic signal names for killpg *sigaction* and *sigvec*.

Revision 1.81: download - view: text, markup, annotated - select for diffs
Sat Jul 16 22:00:01 2005 UTC (19 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +70 -99 lines
WARNS=3

Revision 1.80: download - view: text, markup, annotated - select for diffs
Thu Jun 2 01:53:51 2005 UTC (19 years, 6 months ago) by lukem
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +3 -3 lines
appease gcc -Wuninitialized

Revision 1.77.2.2: download - view: text, markup, annotated - select for diffs
Mon Aug 30 08:00:06 2004 UTC (20 years, 3 months ago) by tron
Branches: netbsd-2-0
CVS tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2
Diff to: previous 1.77.2.1: preferred, colored; branchpoint 1.77: preferred, colored; next MAIN 1.78: preferred, colored
Changes since revision 1.77.2.1: +2 -2 lines
Pull up revision 1.79 (requested by skrll in ticket #789):
Ensure a non-zero 'word_size' is passed to hexdump_buf for unknown
trace types.
Also fix an incorrect use of the global word_size variable

Revision 1.79: download - view: text, markup, annotated - select for diffs
Mon Aug 23 20:49:28 2004 UTC (20 years, 3 months ago) by dsl
Branches: MAIN
CVS tags: netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +4 -4 lines
Ensure a non-zero 'word_size' is passed to hexdump_buf for unknown
trace types.
Also fix an incorrect use of the global word_size variable

Revision 1.77.2.1: download - view: text, markup, annotated - select for diffs
Mon May 10 14:44:18 2004 UTC (20 years, 6 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +17 -5 lines
Pull up revision 1.78 (requested by matt in ticket #278):
Allow kdump to print the names for machine dependent ptrace ops.
(This requires <machine/ptrace.h> to define PT_MACHDEP_STRINGS
which corresponds to the machdep ops).

Revision 1.78: download - view: text, markup, annotated - select for diffs
Thu May 6 22:51:38 2004 UTC (20 years, 7 months ago) by matt
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +17 -5 lines
Allow kdump to print the names for machine dependent ptrace ops.
(This requires <machine/ptrace.h> to define PT_MACHDEP_STRINGS
which corresponds to the machdep ops).

Revision 1.77: download - view: text, markup, annotated - select for diffs
Sun Mar 7 17:20:53 2004 UTC (20 years, 9 months ago) by dsl
Branches: MAIN
CVS tags: netbsd-2-0-base
Branch point for: netbsd-2-0
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +30 -4 lines
Suppress duplicate lines when hexdumping data

Revision 1.76: download - view: text, markup, annotated - select for diffs
Fri Feb 27 23:06:02 2004 UTC (20 years, 9 months ago) by enami
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +24 -22 lines
Fix whitespace usage and remove unnecessary semi-colon.

Revision 1.75: download - view: text, markup, annotated - select for diffs
Fri Feb 27 22:48:56 2004 UTC (20 years, 9 months ago) by enami
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +5 -5 lines
We can't access array[sizeof(array) / sizeof(array[0])].

Revision 1.74: download - view: text, markup, annotated - select for diffs
Fri Feb 27 22:44:38 2004 UTC (20 years, 9 months ago) by enami
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +4 -2 lines
Calculate the width again if we start newline at tab character, since
start column changes.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Mon Feb 2 06:27:56 2004 UTC (20 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +8 -7 lines
Fix reversed logic (decimal argument passed in output_long, where it expects
hex). Change tests to <= 9 to a small(v) macro, so that negative numbers fail
too consistently.

Revision 1.72: download - view: text, markup, annotated - select for diffs
Thu Jan 15 14:42:09 2004 UTC (20 years, 10 months ago) by mrg
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +75 -62 lines
redo the former in light of making the kernel output normal 64 bit
records for 32 bit & 64 bit processes.  we still make some adjustments
when dealing with 32-bit processes, but largely things are handled the
same now.  make the code to match "netbsd32_<syscall>" in place of
plain "<syscall>" more general.

Revision 1.71: download - view: text, markup, annotated - select for diffs
Mon Jan 12 13:39:56 2004 UTC (20 years, 10 months ago) by mrg
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +11 -4 lines
- add a new flags field to the emulation vector, with one user so far
EMUL_FLAG_NETBSD32.  set EMUL_FLAG_NETBSD32 in any 32 bit on 64 bit
kernel emulation layers.
- if EMUL_FLAG_NETBSD32 is set, calculate the proper argument count.
(XXX: this should use register32_t, but that's not visible to all
builders of kdump...)

now netbsd32_ioctl(2) actually reports sane values, and other arguments
are mostly correctly printed (there are still some signed extension
issues with 32 bit numbers being displayed as "0xffffffff8xxxxxxx".)

Revision 1.70: download - view: text, markup, annotated - select for diffs
Mon Nov 24 22:12:14 2003 UTC (21 years ago) by manu
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +4 -3 lines
Fix cross-build problem on sparc caused by a cast size_t -> int

Revision 1.69: download - view: text, markup, annotated - select for diffs
Mon Nov 24 16:53:38 2003 UTC (21 years ago) by manu
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +21 -2 lines
Enable tracing of out of line data sent with Mach messages

Revision 1.68: download - view: text, markup, annotated - select for diffs
Tue Nov 18 14:21:59 2003 UTC (21 years ago) by manu
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +3 -3 lines
For Mach messages, always display the message Id in decimal. The information
is indeed in the message, but in hex. It's a bit inconvenient.

Revision 1.67: download - view: text, markup, annotated - select for diffs
Tue Nov 18 13:21:53 2003 UTC (21 years ago) by dsl
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +90 -84 lines
Stop core dump if an ioctl trace has fewer than expected arguments.
- Check names of system calls (for special treatment) because emulations
  might use different numbers.
- Report an error if arguments to -p or -m non-numeric.
- Just take last of -x and -Xvalue, stop -X0x80000000 being valid (core dumps).
- Keep 'last used' emulation_ctx at top of list, create on lookup (usually
  EMUL anyway), delete when exit called (doesn't return).
- Slightly improve hack to get correct system call name in execve return
  when emulation has changed.
- Rename global variables 'current'/'previous' to 'cur_emul'/'prev_emul'.
(TODO: save system call type (and maybe an argument) per pid so GIO trace
format can depend on the actual system call.)
Fixes part of PR sparc64/23473 - but system call arguments will still not be
displayed correctly.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Sun Nov 16 21:52:33 2003 UTC (21 years ago) by manu
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +14 -6 lines
Following mycroft's comment, restore -x to its original behavior: without
an argument. Introduce -Xsize to do the job. -x is equivalent to -X1
Of course -x and -Xsize are mutually exclusive.

Revision 1.65: download - view: text, markup, annotated - select for diffs
Sun Nov 16 14:51:26 2003 UTC (21 years ago) by dsl
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +52 -54 lines
Validate the numeric argument to -x, support -x1|2|4|8|16.
Produce sensible output on little-endian systems.

Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Nov 16 10:13:48 2003 UTC (21 years ago) by manu
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +57 -16 lines
Add an argument to the -x flag to choose between byte per byte display
and word per word display in hex dumps.
-x1 gives you byte per byte, -x4 word per word, and -x defaults to -x1

Revision 1.63: download - view: text, markup, annotated - select for diffs
Sat Nov 15 23:10:31 2003 UTC (21 years ago) by manu
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +18 -5 lines
kdump now displays Mach services names itself, including a table of
id/names in sys/compat/mach/mach_services_names.c

Remove ports and flags displays, the information is already in the message.

Revision 1.62: download - view: text, markup, annotated - select for diffs
Sat Sep 20 22:24:00 2003 UTC (21 years, 2 months ago) by matt
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +5 -4 lines
Fix printf botch

Revision 1.61: download - view: text, markup, annotated - select for diffs
Sat Sep 20 00:17:44 2003 UTC (21 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +13 -11 lines
improve formatting in the non-siginfo case, by printing the code. This is
for compatibility with the old ktrace files.

Revision 1.60: download - view: text, markup, annotated - select for diffs
Fri Sep 19 22:49:02 2003 UTC (21 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +90 -15 lines
Print siginfo_t information when available.

Revision 1.59: download - view: text, markup, annotated - select for diffs
Thu Aug 7 11:14:13 2003 UTC (21 years, 4 months ago) by agc
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -7 lines
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22365, verified by myself.

Revision 1.58: download - view: text, markup, annotated - select for diffs
Thu Jul 17 09:05:13 2003 UTC (21 years, 4 months ago) by dsl
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +95 -61 lines
Grok KTR_EXEC_ENV and KTR_EXEC_ARG.
Make ktrace -c default to removing all trace points (not just the default ones).
Make kdump default to dumping everything in the trace file.
Add 'A' (all) and '-' (remove following) to valid -t arguments.
Dump data block of UNKNOWN trace points in hex + ascii.
Make first time output with -R 0 (instead of time since epoch).
Use svis() instead of vis() to get " escaped (as \") (needs fixed libc)
Correctly pass unsigned values to svis()
Update man pages.

Revision 1.57: download - view: text, markup, annotated - select for diffs
Sun Jul 13 18:54:29 2003 UTC (21 years, 4 months ago) by dsl
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +7 -7 lines
Change back to print hex bytes. The 'word' print was completely broken
on little endian systems.  It is also much easier to read misaligned
words in a straight byte hexdump.
Cut offset to 3 hex digits so that it fixs in 80 columns and still
leaves a tab at the start of 'continuation' lines.
The ktrace buffer is limited to 4k, so 3 digits is ample.

Revision 1.56: download - view: text, markup, annotated - select for diffs
Sun Jul 13 15:19:39 2003 UTC (21 years, 4 months ago) by he
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -3 lines
On some ports, pointer differences are not ints, so do a cast
before using such a result as a field width.

Revision 1.55: download - view: text, markup, annotated - select for diffs
Sat Jul 12 19:22:07 2003 UTC (21 years, 4 months ago) by manu
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +5 -5 lines
Make hexdump output fix in 80 char-wide terminal

Revision 1.54: download - view: text, markup, annotated - select for diffs
Sat Jul 12 10:07:08 2003 UTC (21 years, 4 months ago) by manu
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +9 -39 lines
Use the same code to display hexdump of GIO and MMSG (Mach Messages).
While we are there, display offsets in the hexdump, it can be useful.
Remove size display in Mach Messages as user processes don't always
fill it correctly.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Fri Jul 11 13:06:11 2003 UTC (21 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -3 lines
Add -x to usage output.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Fri Jul 11 10:59:28 2003 UTC (21 years, 4 months ago) by dsl
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +37 -3 lines
Add a '-x' option to display GIO data blocks in hex and ascii (instead of
vis(3) format).
Maybe there could be a heuristic to decide whether the data is printable...

Revision 1.51: download - view: text, markup, annotated - select for diffs
Sun Jun 29 22:35:35 2003 UTC (21 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +4 -11 lines
Back out previous.

Revision 1.50: download - view: text, markup, annotated - select for diffs
Sun Jun 29 18:05:06 2003 UTC (21 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +3 -3 lines
Since a caddr_t is (mis-)used as the lwp-id, cast it to intptr_t and use
apropriate format string.

Revision 1.49: download - view: text, markup, annotated - select for diffs
Sat Jun 28 17:15:07 2003 UTC (21 years, 5 months ago) by darrenr
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +11 -4 lines
add appropriate hack to display ktr_buf as the lwpid if -L is supplied on
the command line.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Thu May 15 12:57:54 2003 UTC (21 years, 6 months ago) by dsl
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +28 -15 lines
Print rval[1] if non-zero and present in the trace entry.
To get both fd numbers for pipe().

Revision 1.47: download - view: text, markup, annotated - select for diffs
Thu Jan 30 21:43:26 2003 UTC (21 years, 10 months ago) by atatat
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +6 -4 lines
Make "-m0" print no data, so that we agree better with the man page.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Mon Dec 9 21:29:28 2002 UTC (21 years, 11 months ago) by manu
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +56 -5 lines
Added support for dumping mach messages in ktrace/kdump. While we are
there, KNFify a few functions.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Fri Nov 29 19:15:41 2002 UTC (22 years ago) by wiz
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +4 -4 lines
Sync usage with man page (and actual options).

Revision 1.44: download - view: text, markup, annotated - select for diffs
Thu Nov 28 16:18:49 2002 UTC (22 years ago) by jdolecek
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +5 -3 lines
signame(): if sig == 0, return name " 0", so that the result would be
printed as:
   CALL  kill(0x1e4, SIG 0)
rathern than previous
   CALL  kill(0x1e4, SIG*unknown 0*)

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Nov 27 21:26:57 2002 UTC (22 years ago) by atatat
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +10 -6 lines
Add -N which inhibits translation of system calls numbers into names.

Revision 1.42: download - view: text, markup, annotated - select for diffs
Fri Nov 15 19:58:05 2002 UTC (22 years ago) by manu
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +10 -7 lines
Now properly display Mach traps

Revision 1.41: download - view: text, markup, annotated - select for diffs
Fri Sep 27 20:31:44 2002 UTC (22 years, 2 months ago) by atatat
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +16 -5 lines
Allow passing of the ktrace file as the last argument without a -f.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Aug 4 14:26:21 2002 UTC (22 years, 4 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +5 -5 lines
Fix formatting of ktr_user entries so that values of individual bytes
of ktrace record are treated as unsigned char, and printed using "%02x".
Change suggested in bin/17832 by Paul Goyette.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Jun 20 22:02:32 2002 UTC (22 years, 5 months ago) by atatat
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +11 -4 lines
It's easy for ktrace can generate trace files that contain data from
multiple processes, so let's add a "-p pid" option to kdump so that it
can pull out the data for one process easily.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Apr 8 20:15:59 2002 UTC (22 years, 8 months ago) by christos
Branches: MAIN
CVS tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +4 -3 lines
Fix translation in the native emulation. Noted by veego.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sun Mar 31 22:44:03 2002 UTC (22 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +43 -9 lines
Provide hooks for signal number to name translation, and use them for kill
and PSIG.

XXX[1]: This shows that signal emulation ktrace is slightly busted: posted
	signals should really be translated to the emulated ones instead of
	producing ktrace records with the signal numbers of the native
	emulation.
XXX[2]: There are other places where signal names can be displayed, but this
	is not done yet.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Tue Feb 12 22:22:37 2002 UTC (22 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +9 -9 lines
reverse the notion of fancy, use plain, and increment it so that we can
have multiple levels of plainness. I want to be able to display syscalls
numerically, for that use -nn. This is not documented as it is an wip.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Fri Feb 16 23:28:44 2001 UTC (23 years, 9 months ago) by manu
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +13 -4 lines
Cosmetic fix so that RET record after CALL execve get the appropriate syscall
even if the emulation changed

Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Dec 28 11:11:34 2000 UTC (23 years, 11 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +12 -9 lines
adapt to KTR_USER structure changes

Revision 1.33: download - view: text, markup, annotated - select for diffs
Wed Dec 20 22:11:16 2000 UTC (23 years, 11 months ago) by itojun
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +7 -7 lines
avoid using "errno" as struct member name, to avoid conflict with errno.h.
ok by jdolecek

Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Dec 17 16:09:40 2000 UTC (23 years, 11 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +21 -2 lines
add support for KTR_USER records

Revision 1.31: download - view: text, markup, annotated - select for diffs
Mon Nov 13 21:43:12 2000 UTC (24 years ago) by jdolecek
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +23 -4 lines
map linux ptrace op (number) to it's appropriate name - this is kind of hack,
but turned out to be pretty usable for me

Revision 1.23.2.1: download - view: text, markup, annotated - select for diffs
Thu Oct 19 20:35:38 2000 UTC (24 years, 1 month ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH003
Diff to: previous 1.23: preferred, colored; next MAIN 1.24: preferred, colored
Changes since revision 1.23: +3 -3 lines
Apply patch (requested by he):
  Fix format / arg mismatch.

Revision 1.29.4.1: download - view: text, markup, annotated - select for diffs
Wed Oct 18 01:32:44 2000 UTC (24 years, 1 month ago) by tv
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +3 -3 lines
Pullup usr.bin string format fixes [is].
See "cvs log" for explicit revision numbers per file, from sommerfeld.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Oct 12 19:02:17 2000 UTC (24 years, 1 month ago) by is
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -3 lines
Format string cleanups

Revision 1.29: download - view: text, markup, annotated - select for diffs
Wed Apr 26 16:05:37 2000 UTC (24 years, 7 months ago) by tron
Branches: MAIN
CVS tags: netbsd-1-5-base, netbsd-1-5-ALPHA2, minoura-xpg4dl-base, minoura-xpg4dl
Branch point for: netbsd-1-5
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +3 -3 lines
Prevent "kdump" from causing a segmentation fault if the io buffer that
it's printing to stdout ends on a page boundary. Patch supplied by
Andrew Brown in PR bin/9983.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Apr 10 09:13:45 2000 UTC (24 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +5 -178 lines
put setemul(), ectx_* & appropriate structures to separate file, to make it
more easily sharable with ktruss(1)

Revision 1.27: download - view: text, markup, annotated - select for diffs
Mon Apr 10 07:58:30 2000 UTC (24 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +127 -32 lines
Keep track of what pid uses which emulation and ensure proper
structures are used when decoding the ktrace records. This makes
kdump of ktrace -i output of a process executing binaries of various
emulations actually useful - before, the code used emulation structures
appropriate for last recently executed process, which is bogus.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Mon Mar 27 17:03:25 2000 UTC (24 years, 8 months ago) by kleink
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +4 -3 lines
Cast timeval members to types we know the printf conversions of.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Fri Dec 31 22:27:59 1999 UTC (24 years, 11 months ago) by eeh
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +6 -2 lines
Add COMPAT_NETBSD32 support.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Fri Aug 6 00:11:03 1999 UTC (25 years, 4 months ago) by thorpej
Branches: MAIN
CVS tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, comdex-fall-1999-base, comdex-fall-1999
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +7 -7 lines
Don't truncate syscall return values on LP64 platforms.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Sat Oct 24 19:04:51 1998 UTC (26 years, 1 month ago) by christos
Branches: MAIN
CVS tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001
Branch point for: netbsd-1-4
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +10 -10 lines
Adjust to Eric's recent errno renaming.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Sun Oct 18 17:43:43 1998 UTC (26 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +82 -19 lines
Fix emulation errno translation.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Fri Sep 11 23:09:31 1998 UTC (26 years, 2 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +18 -5 lines
Update for signal handling changes.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Mar 30 02:26:07 1998 UTC (26 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -3 lines
use static int instead of static

Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Oct 20 04:21:22 1997 UTC (27 years, 1 month ago) by lukem
Branches: MAIN
CVS tags: netbsd-1-3-base, netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA, netbsd-1-3
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +14 -11 lines
add support for freebsd emulation. from Dave Huang <khym@bga.com> [bin/4293]

Revision 1.18: download - view: text, markup, annotated - select for diffs
Sun Oct 19 03:38:29 1997 UTC (27 years, 1 month ago) by lukem
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +14 -14 lines
WARNSify mkioctls output, fix .Nm usage, deprecate register

Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed Jul 23 05:53:34 1997 UTC (27 years, 4 months ago) by mikel
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +44 -9 lines
add explicit return types and prototypes for local functions
use __COPYRIGHT and __RCSID macros, fix other gcc -Wall warnings

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat May 17 19:46:27 1997 UTC (27 years, 6 months ago) by pk
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +4 -4 lines
* NULL => 0 (Arne Juul; PR#3629)
* Nuke spacoids

Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Jan 27 21:39:50 1997 UTC (27 years, 10 months ago) by cgd
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +3 -3 lines
fix decode of _IOR/_IOW/_IOWR: 'R' and 'W' were switched (i.e. _IOW ioctls
would print out as '_IOR'), and _IOWR ioctls were being printed as
_IORW (which doesn't exist).

Revision 1.14: download - view: text, markup, annotated - select for diffs
Thu Nov 21 06:25:26 1996 UTC (28 years ago) by mikel
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -4 lines
eliminate multiple inclusion of <sys/errno.h>.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon May 13 21:12:25 1996 UTC (28 years, 6 months ago) by christos
Branches: MAIN
CVS tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-PATCH001, netbsd-1-2-BETA, netbsd-1-2
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +22 -9 lines
Decode unknown ioctl commands to _IO{R,W,}('c',x[,y]), instead of 0xabcdef00

Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Aug 31 23:18:33 1995 UTC (29 years, 3 months ago) by jtc
Branches: MAIN
CVS tags: netbsd-1-1-base, netbsd-1-1-RELEASE, netbsd-1-1-PATCH001, netbsd-1-1
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +6 -3 lines
Sync with 4.4lite2

Revision 1.1.1.2 (vendor branch): download - view: text, markup, annotated - select for diffs
Thu Aug 31 22:52:53 1995 UTC (29 years, 3 months ago) by jtc
Branches: CSRG
CVS tags: lite-2
Diff to: previous 1.1.1.1: preferred, colored
Changes since revision 1.1.1.1: +53 -72 lines
imported from 44lite2

Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Jul 19 15:11:28 1995 UTC (29 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +94 -18 lines
Add support for displaying and switching between
different OS system call emulations

Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Jun 7 07:24:19 1995 UTC (29 years, 6 months ago) by cgd
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -2 lines
only print MAXCOMLEN chars of the process command name.  fixes pr 1080.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Thu May 11 22:29:04 1995 UTC (29 years, 6 months ago) by cgd
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
 don't get syscalls.c with an absolute path

Revision 1.8: download - view: text, markup, annotated - select for diffs
Tue Mar 28 17:23:01 1995 UTC (29 years, 8 months ago) by jtc
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +3 -3 lines
KERNEL -> _KERNEL

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Mar 26 07:56:27 1995 UTC (29 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +28 -26 lines
update for the new data stored in ktrace files:
	(1) use argsize rather than nargs
	(2) print long-sized (assumed == register_t-sized; XXX) items
		rather than int-sized ones.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Mar 21 14:22:38 1995 UTC (29 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +4 -4 lines
Make two variables non-static.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Mar 21 14:20:18 1995 UTC (29 years, 8 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +5 -6 lines
Update to use timer{add,sub}().

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Jan 15 07:50:44 1995 UTC (29 years, 10 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +26 -47 lines
Some KNF, POSIX, and err*(3)/warn*(3) cleanup.  Also, use sys_signame[]
rather than a private, home-grown list.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Oct 6 15:44:34 1994 UTC (30 years, 2 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -1 lines
Add RCS ids.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Wed May 18 21:07:34 1994 UTC (30 years, 6 months ago) by deraadt
Branches: MAIN
CVS tags: netbsd-1-0-base, netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0, netbsd-1-0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2 lines
netbsd does not define PT_STEP for architectures that lack
in-kernel single stepping capabilities.

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Wed May 11 07:10:28 1994 UTC (30 years, 7 months ago) by cgd
Branches: CSRG
CVS tags: lite-1
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
updated kdump

Revision 1.1: download - view: text, markup, annotated - select for diffs
Wed May 11 07:10:27 1994 UTC (30 years, 7 months ago) by cgd
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs 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.

Log view options

CVSweb <webmaster@jp.NetBSD.org>