diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-02-17 18:02:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-02-17 18:02:08 +0000 |
commit | 48e996085bd2f73d1b0e97b713646d3f2db9198b (patch) | |
tree | 720144e760472d0702730272f4552fac8f1c9a6c /sys | |
parent | 4954c84eaf7cb6856e483998dc37a0dfce283e9a (diff) |
Do not need KTRC_CODE__SYSCALL in the ktrace files anymore, because
__syscall() was removed.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/ktrace.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/sys/ktrace.h b/sys/sys/ktrace.h index d784bb0fa90..f0cac46ab8c 100644 --- a/sys/sys/ktrace.h +++ b/sys/sys/ktrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ktrace.h,v 1.44 2023/01/16 05:32:05 deraadt Exp $ */ +/* $OpenBSD: ktrace.h,v 1.45 2023/02/17 18:02:07 deraadt Exp $ */ /* $NetBSD: ktrace.h,v 1.12 1996/02/04 02:12:29 christos Exp $ */ /* @@ -76,7 +76,6 @@ struct ktr_syscall { int ktr_code; /* syscall number */ #define KTRC_CODE_MASK 0x0000ffff #define KTRC_CODE_SYSCALL 0x20000000 -#define KTRC_CODE__SYSCALL 0x40000000 int ktr_argsize; /* size of arguments */ /* * followed by ktr_argsize/sizeof(register_t) "register_t"s |