From 6d1d60341747a49cc98d0bc2ff20875401e0d9a7 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Wed, 11 Nov 2020 14:39:51 +0000 Subject: htl: Fix spurious symbols in namespaces pthread_attr_{{get,set}stack{addr,size},setstack} were defining a strong alias for no reason, turning them to weak. --- sysdeps/htl/pt-attr-getstacksize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/htl/pt-attr-getstacksize.c') diff --git a/sysdeps/htl/pt-attr-getstacksize.c b/sysdeps/htl/pt-attr-getstacksize.c index e4f6f68186..0fc61662a5 100644 --- a/sysdeps/htl/pt-attr-getstacksize.c +++ b/sysdeps/htl/pt-attr-getstacksize.c @@ -25,4 +25,4 @@ __pthread_attr_getstacksize (const pthread_attr_t *attr, size_t * stacksize) *stacksize = attr->__stacksize; return 0; } -strong_alias (__pthread_attr_getstacksize, pthread_attr_getstacksize) +weak_alias (__pthread_attr_getstacksize, pthread_attr_getstacksize) -- cgit 1.4.1