svn commit: r368531 - stable/12/lib/csu/common

John Baldwin jhb at FreeBSD.org
Thu Dec 10 23:58:27 UTC 2020


Author: jhb
Date: Thu Dec 10 23:58:27 2020
New Revision: 368531
URL: https://svnweb.freebsd.org/changeset/base/368531

Log:
  MFC 367574: 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.

Modified:
  stable/12/lib/csu/common/crtend.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/lib/csu/common/crtend.c
==============================================================================
--- stable/12/lib/csu/common/crtend.c	Thu Dec 10 23:43:29 2020	(r368530)
+++ stable/12/lib/csu/common/crtend.c	Thu Dec 10 23:58:27 2020	(r368531)
@@ -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-all mailing list