summary refs log tree commit diff
path: root/htl
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-02-09 23:13:24 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-02-10 00:06:59 +0000
commitf1cd3407e4c6767e0bbe2ca122b713c6581b8d67 (patch)
tree8c22e44447d7c34fa562df64ec3b4f329c4272d9 /htl
parent782ee4e256a1e2b6fe2fe226ec8a38732e43c60f (diff)
downloadglibc-f1cd3407e4c6767e0bbe2ca122b713c6581b8d67.tar.gz
glibc-f1cd3407e4c6767e0bbe2ca122b713c6581b8d67.tar.xz
glibc-f1cd3407e4c6767e0bbe2ca122b713c6581b8d67.zip
htl: clean __pthread_get_cleanup_stack hidden proto
Diffstat (limited to 'htl')
-rw-r--r--htl/pt-cleanup.c4
-rw-r--r--htl/pt-exit.c2
-rw-r--r--htl/pt-join.c2
3 files changed, 3 insertions, 5 deletions
diff --git a/htl/pt-cleanup.c b/htl/pt-cleanup.c
index 3f5f43f253..a9a7c95847 100644
--- a/htl/pt-cleanup.c
+++ b/htl/pt-cleanup.c
@@ -21,8 +21,8 @@
 #include <pt-internal.h>
 
 struct __pthread_cancelation_handler **
-___pthread_get_cleanup_stack (void)
+__pthread_get_cleanup_stack (void)
 {
   return &_pthread_self ()->cancelation_handlers;
 }
-strong_alias (___pthread_get_cleanup_stack, __pthread_get_cleanup_stack)
+hidden_def(__pthread_get_cleanup_stack)
diff --git a/htl/pt-exit.c b/htl/pt-exit.c
index 9a4db2da51..94e3cd9dc0 100644
--- a/htl/pt-exit.c
+++ b/htl/pt-exit.c
@@ -41,7 +41,7 @@ __pthread_exit (void *status)
      disabled.  */
   __pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &oldstate);
 
-  for (handlers = ___pthread_get_cleanup_stack ();
+  for (handlers = __pthread_get_cleanup_stack ();
        *handlers != NULL;
        *handlers = (*handlers)->__next)
     (*handlers)->__handler ((*handlers)->__arg);
diff --git a/htl/pt-join.c b/htl/pt-join.c
index b141c4c8b9..43878a3d52 100644
--- a/htl/pt-join.c
+++ b/htl/pt-join.c
@@ -22,8 +22,6 @@
 
 #include <pt-internal.h>
 
-#define __pthread_get_cleanup_stack ___pthread_get_cleanup_stack
-
 /* Make calling thread wait for termination of thread THREAD.  Return
    the exit status of the thread in *STATUS.  */
 int