svn commit: r311148 - head/sys/cddl/contrib/opensolaris/uts/common/sys

Mark Johnston markj at FreeBSD.org
Tue Jan 3 00:24:14 UTC 2017


Author: markj
Date: Tue Jan  3 00:24:12 2017
New Revision: 311148
URL: https://svnweb.freebsd.org/changeset/base/311148

Log:
  Remove the "unused" DIF subroutine index left after r308582.
  
  These indices are input to a build-time script that generates code to
  validate subroutine names.

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h

Modified: head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h	Tue Jan  3 00:05:44 2017	(r311147)
+++ head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h	Tue Jan  3 00:24:12 2017	(r311148)
@@ -306,15 +306,14 @@ typedef enum dtrace_probespec {
 #define	DIF_SUBR_TOUPPER		44
 #define	DIF_SUBR_TOLOWER		45
 #define	DIF_SUBR_MEMREF			46
-#define	DIF_SUBR_UNUSED			47
-#define	DIF_SUBR_SX_SHARED_HELD		48
-#define	DIF_SUBR_SX_EXCLUSIVE_HELD	49
-#define	DIF_SUBR_SX_ISEXCLUSIVE		50
-#define	DIF_SUBR_MEMSTR			51
-#define	DIF_SUBR_GETF			52
-#define	DIF_SUBR_JSON			53
-#define	DIF_SUBR_STRTOLL		54
-#define	DIF_SUBR_MAX			54	/* max subroutine value */
+#define	DIF_SUBR_SX_SHARED_HELD		47
+#define	DIF_SUBR_SX_EXCLUSIVE_HELD	48
+#define	DIF_SUBR_SX_ISEXCLUSIVE		49
+#define	DIF_SUBR_MEMSTR			50
+#define	DIF_SUBR_GETF			51
+#define	DIF_SUBR_JSON			52
+#define	DIF_SUBR_STRTOLL		53
+#define	DIF_SUBR_MAX			53	/* max subroutine value */
 
 typedef uint32_t dif_instr_t;
 


More information about the svn-src-all mailing list