diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-03-19 09:05:40 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-03-19 09:05:40 +0000 |
commit | f2014dc397c2f285566b439a8a6148a14b6a3ef9 (patch) | |
tree | d229ef04133f3436b2ffe28e924b82b41d63c7e6 /usr.bin/kdump/mksubr | |
parent | 4b4ca199b889eb9f83636a4440711c3e46fc2e8b (diff) |
Add tracing and dumping of "pointer to struct" syscall arguments for
structs timespec, timeval, sigaction, and rlimit.
ok otto@ jsing@
Diffstat (limited to 'usr.bin/kdump/mksubr')
-rw-r--r-- | usr.bin/kdump/mksubr | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/kdump/mksubr b/usr.bin/kdump/mksubr index f905b202f74..d3ece70c93c 100644 --- a/usr.bin/kdump/mksubr +++ b/usr.bin/kdump/mksubr @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: mksubr,v 1.8 2012/02/20 21:04:35 guenther Exp $ +# $OpenBSD: mksubr,v 1.9 2012/03/19 09:05:39 guenther Exp $ # # Copyright (c) 2006 David Kirchner <dpk@dpk.net> # @@ -430,6 +430,7 @@ auto_switch_type "clockname" "CLOCK_[A-Z]+[[:space:]]+[0-9]+" "sys/time.h" #auto_switch_type "kldsymcmdname" "KLDSYM_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h" #auto_switch_type "sendfileflagsname" "SF_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h" #auto_switch_type "acltypename" "ACL_TYPE_[A-Z4_]+[[:space:]]+0x[0-9]+" "sys/acl.h" +auto_orz_type "sigactionflagname" "SA_[A-Z]+[[:space:]]+0x[0-9]+" "sys/signal.h" auto_switch_type "sigprocmaskhowname" "SIG_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h" auto_switch_type "sigill_name" "ILL_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h" auto_switch_type "sigtrap_name" "TRAP_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h" |