Module Name: src
Committed By: dholland
Date: Mon Oct 7 07:11:40 UTC 2013
Modified Files:
src/sys/sys: sdt.h
Log Message:
Use uint32_t, not u_int32_t; makes this file standalone like it ought
to be. PR 45693.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/sys/sdt.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/sdt.h
diff -u src/sys/sys/sdt.h:1.3 src/sys/sys/sdt.h:1.4
--- src/sys/sys/sdt.h:1.3 Sun Jun 9 01:13:47 2013
+++ src/sys/sys/sdt.h Mon Oct 7 07:11:40 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: sdt.h,v 1.3 2013/06/09 01:13:47 riz Exp $ */
+/* $NetBSD: sdt.h,v 1.4 2013/10/07 07:11:40 dholland Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@ typedef struct {
* This type definition must match that of dtrace_probe. It is defined this
* way to avoid having to rely on CDDL code.
*/
-typedef void (*sdt_probe_func_t)(u_int32_t, uintptr_t arg0, uintptr_t arg1,
+typedef void (*sdt_probe_func_t)(uint32_t, uintptr_t arg0, uintptr_t arg1,
uintptr_t arg2, uintptr_t arg3, uintptr_t arg4);
/*