svn commit: r367574 - head/lib/csu/common

John Baldwin jhb at FreeBSD.org
Tue Nov 10 19:04:55 UTC 2020


Author: jhb
Date: Tue Nov 10 19:04:54 2020
New Revision: 367574
URL: https://svnweb.freebsd.org/changeset/base/367574

Log:
  Rename __JCR_LIST__ to __JCR_END__ in crtend.c.
  
  This is more consistent with the names used for .ctor and .dtor
  symbols and better reflects __JCR_END__'s role.
  
  Reviewed by:	andrew
  Obtained from:	CheriBSD
  MFC after:	2 weeks
  Sponsored by:	DARPA
  Differential Revision:	https://reviews.freebsd.org/D27125

Modified:
  head/lib/csu/common/crtend.c

Modified: head/lib/csu/common/crtend.c
==============================================================================
--- head/lib/csu/common/crtend.c	Tue Nov 10 18:12:09 2020	(r367573)
+++ head/lib/csu/common/crtend.c	Tue Nov 10 19:04:54 2020	(r367574)
@@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$");
 
 typedef void (*crt_func)(void);
 
-static crt_func __JCR_LIST__[] __section(".jcr") __used = {
+static crt_func __JCR_END__[] __section(".jcr") __used = {
 	(crt_func)0
 };
 


More information about the svn-src-head mailing list