]> sourceware.org Git - glibc.git/commitdiff
Mark internal setjmp functions hidden
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 15 Oct 2015 21:22:10 +0000 (14:22 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 15 Oct 2015 21:22:25 +0000 (14:22 -0700)
Since internal dirent functions are only used internally in ld.so and
libc.so, they can be made hidden.

[BZ #19122]
* include/setjmp.h (__longjmp): Add attribute_hidden.
[IS_IN (rtld)] (__sigsetjmp): Likewise.

ChangeLog
include/setjmp.h

index 3dba8b367301363ab07fb793f29c7c1fb6c43470..94869bcb3d37e8b7ebe8a5520e73b3690c6a9b1c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
 2015-10-15  H.J. Lu  <hongjiu.lu@intel.com>
 
        [BZ #19122]
+       * include/setjmp.h (__longjmp): Add attribute_hidden.
+       [IS_IN (rtld)] (__sigsetjmp): Likewise.
+
        * include/libc-internal.h [IS_IN (rtld)] (__profile_frequency):
        Add attribute_hidden.
 
index 622bb319f3c61f64e6f23a6ef5207bd0921bf2fc..90f46976e3c45a84a934b7d6d7989477ea9e8f80 100644 (file)
@@ -6,7 +6,7 @@
 
 /* Internal machine-dependent function to restore context sans signal mask.  */
 extern void __longjmp (__jmp_buf __env, int __val)
-     __attribute__ ((__noreturn__));
+     __attribute__ ((__noreturn__)) attribute_hidden;
 
 /* Internal function to possibly save the current mask of blocked signals
    in ENV, and always set the flag saying whether or not it was saved.
@@ -24,6 +24,10 @@ libc_hidden_proto (__libc_longjmp)
 
 libc_hidden_proto (_setjmp)
 libc_hidden_proto (__sigsetjmp)
+
+# if IS_IN (rtld)
+extern __typeof (__sigsetjmp) __sigsetjmp attribute_hidden;
+# endif
 #endif
 
 #endif
This page took 0.099535 seconds and 5 git commands to generate.