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. */ _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"