diff options
author | Jeff Roberson <jeff@FreeBSD.org> | 2008-03-12 11:51:01 +0000 |
---|---|---|
committer | Jeff Roberson <jeff@FreeBSD.org> | 2008-03-12 11:51:01 +0000 |
commit | 0f33b907d50e84932bd17c150604e63b0957fd65 (patch) | |
tree | 651c3295e7bbc03be2bcde67cd992fcfcf850415 | |
parent | 7d4cbc36077d7df8681e0abc0820a8a1a6382333 (diff) |
Notes
-rw-r--r-- | usr.bin/kdump/kdump.c | 6 | ||||
-rw-r--r-- | usr.bin/kdump/kdump_subr.h | 1 | ||||
-rw-r--r-- | usr.bin/kdump/mksubr | 2 |
3 files changed, 0 insertions, 9 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 5365d872f82df..7efd789de4f40 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -771,12 +771,6 @@ ktrsyscall(struct ktr_syscall *ktr) mountflagsname ((int)*ip); ip++; narg--; - } else if (ktr->ktr_code == SYS_kse_thr_interrupt) { - print_number(ip,narg,c); - (void)putchar(','); - ksethrcmdname ((int)*ip); - ip++; - narg--; } else if (ktr->ktr_code == SYS_thr_create) { print_number(ip,narg,c); print_number(ip,narg,c); diff --git a/usr.bin/kdump/kdump_subr.h b/usr.bin/kdump/kdump_subr.h index 21d85a97eb249..50cf9ee4c7f80 100644 --- a/usr.bin/kdump/kdump_subr.h +++ b/usr.bin/kdump/kdump_subr.h @@ -36,7 +36,6 @@ void madvisebehavname (int); void msyncflagsname (int); void schedpolicyname (int); void kldunloadfflagsname (int); -void ksethrcmdname (int); void extattrctlname (int); void kldsymcmdname (int); void sendfileflagsname (int); diff --git a/usr.bin/kdump/mksubr b/usr.bin/kdump/mksubr index e5d9b3822460d..797c32c82cdd1 100644 --- a/usr.bin/kdump/mksubr +++ b/usr.bin/kdump/mksubr @@ -151,7 +151,6 @@ cat <<_EOF_ #define _KERNEL #include <sys/thr.h> #undef _KERNEL -#include <sys/kse.h> #include <sys/extattr.h> #include <sys/acl.h> #include <aio.h> @@ -329,7 +328,6 @@ auto_switch_type "madvisebehavname" "_?MADV_[A-Z]+[[:space:]]+[0-9]+" "sys/mman. auto_switch_type "msyncflagsname" "MS_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h" auto_switch_type "schedpolicyname" "SCHED_[A-Z]+[[:space:]]+[0-9]+" "sched.h" auto_switch_type "kldunloadfflagsname" "LINKER_UNLOAD_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h" -auto_switch_type "ksethrcmdname" "KSE_INTR_[A-Z]+[[:space:]]+[0-9]+" "sys/kse.h" auto_switch_type "extattrctlname" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.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" |