aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/ktrace.h
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-05-13 09:09:37 +0000
committerBruce Evans <bde@FreeBSD.org>1999-05-13 09:09:37 +0000
commitf664346fbed61148d0d835560014485091fce774 (patch)
tree0641e1e3aa8fc445c881c41f8ad79f124b073331 /sys/sys/ktrace.h
parenta8481cfc72d9d66504a0e90ac2674ef8bd0fda62 (diff)
downloadsrc-f664346fbed61148d0d835560014485091fce774.tar.gz
src-f664346fbed61148d0d835560014485091fce774.zip
Fixed nonsense arg type `const caddr_t' in the prototype() for utrace().
Changed to `const void *'. utrace() is undocumented, so nothing should notice. Fixed missing consts for utrace() and ktrace() in syscalls.master. sys/ktrace.h is missing some Lite2 changes of shorts to ints.
Notes
Notes: svn path=/head/; revision=47103
Diffstat (limited to 'sys/sys/ktrace.h')
-rw-r--r--sys/sys/ktrace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/ktrace.h b/sys/sys/ktrace.h
index e8e12e838bfe..b5c1d449a180 100644
--- a/sys/sys/ktrace.h
+++ b/sys/sys/ktrace.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ktrace.h 8.1 (Berkeley) 6/2/93
- * $Id$
+ * $Id: ktrace.h,v 1.12 1997/02/22 09:45:26 peter Exp $
*/
#ifndef _SYS_KTRACE_H_
@@ -169,7 +169,7 @@ void ktrsysret __P((struct vnode *, int, int, int));
__BEGIN_DECLS
int ktrace __P((const char *, int, int, pid_t));
-int utrace __P((const caddr_t , size_t));
+int utrace __P((const void *, size_t));
__END_DECLS
#endif /* !KERNEL */