Date: Mon, 25 Apr 2016 18:44:11 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298590 - head/sys/cddl/contrib/opensolaris/uts/common/sys Message-ID: <201604251844.u3PIiBHd066519@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604251844.u3PIiBHd066519>