Module Name:    src
Committed By:   dholland
Date:           Thu Dec  8 22:27:36 UTC 2011

Modified Files:
        src/sys/sys: sdt.h

Log Message:
Uses uintptr_t and therefore needs stdint.h.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 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.1 src/sys/sys/sdt.h:1.2
--- src/sys/sys/sdt.h:1.1	Mon Mar  1 21:10:13 2010
+++ src/sys/sys/sdt.h	Thu Dec  8 22:27:36 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: sdt.h,v 1.1 2010/03/01 21:10:13 darran Exp $	*/
+/*	$NetBSD: sdt.h,v 1.2 2011/12/08 22:27:36 dholland Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -34,6 +34,9 @@
 #ifndef _SDT_H_
 #define _SDT_H_
 
+/* should be stdint.h, but this works transparently for both user and kernel */
+#include <sys/stdint.h>
+
 #if defined(_KERNEL_OPT)
 #include "opt_dtrace.h"
 #endif

Reply via email to