svn commit: r211752 - in head/sys: amd64/include i386/include

Rui Paulo rpaulo at FreeBSD.org
Tue Aug 24 13:13:25 UTC 2010


Author: rpaulo
Date: Tue Aug 24 13:13:24 2010
New Revision: 211752
URL: http://svn.freebsd.org/changeset/base/211752

Log:
  Add two DTrace trap type values. Used by fasttrap.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/amd64/include/trap.h
  head/sys/i386/include/trap.h

Modified: head/sys/amd64/include/trap.h
==============================================================================
--- head/sys/amd64/include/trap.h	Tue Aug 24 13:11:24 2010	(r211751)
+++ head/sys/amd64/include/trap.h	Tue Aug 24 13:13:24 2010	(r211752)
@@ -62,6 +62,8 @@
 #define	T_MCHK		28	/* machine check trap */
 #define	T_XMMFLT	29	/* SIMD floating-point exception */
 #define	T_RESERVED	30	/* reserved (unknown) */
+#define	T_DTRACE_RET	31	/* DTrace pid return */
+#define	T_DTRACE_PROBE	32	/* DTrace fasttrap probe */
 
 /* XXX most of the following codes aren't used, but could be. */
 

Modified: head/sys/i386/include/trap.h
==============================================================================
--- head/sys/i386/include/trap.h	Tue Aug 24 13:11:24 2010	(r211751)
+++ head/sys/i386/include/trap.h	Tue Aug 24 13:13:24 2010	(r211752)
@@ -62,6 +62,8 @@
 #define	T_MCHK		28	/* machine check trap */
 #define	T_XMMFLT	29	/* SIMD floating-point exception */
 #define	T_RESERVED	30	/* reserved (unknown) */
+#define	T_DTRACE_RET	31	/* DTrace pid return */
+#define	T_DTRACE_PROBE	32	/* DTrace fasttrap probe */
 
 /* XXX most of the following codes aren't used, but could be. */
 


More information about the svn-src-all mailing list