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

Mark Johnston markj at FreeBSD.org
Mon Apr 25 18:44:12 UTC 2016


Author: markj
Date: Mon Apr 25 18:44:11 2016
New Revision: 298590
URL: https://svnweb.freebsd.org/changeset/base/298590

Log:
  Increase DTRACE_FUNCNAMELEN from 128 to 192.
  
  This allows for the long function components encountered in www/firefox.
  This constant is part of DTrace's userland ABI, so this change may not be
  MFC'ed.
  
  PR:	207735

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	Mon Apr 25 18:40:57 2016	(r298589)
+++ head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h	Mon Apr 25 18:44:11 2016	(r298590)
@@ -87,7 +87,7 @@ typedef int model_t;
 
 #define	DTRACE_PROVNAMELEN	64
 #define	DTRACE_MODNAMELEN	64
-#define	DTRACE_FUNCNAMELEN	128
+#define	DTRACE_FUNCNAMELEN	192
 #define	DTRACE_NAMELEN		64
 #define	DTRACE_FULLNAMELEN	(DTRACE_PROVNAMELEN + DTRACE_MODNAMELEN + \
 				DTRACE_FUNCNAMELEN + DTRACE_NAMELEN + 4)


More information about the svn-src-all mailing list