From d96b12b755483208673fb05e2e60a15d3822752d Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 6 Jul 2014 22:56:25 -0400 Subject: rework cancellation weak alias logic not to depend on archive order if the order of object files in the static archive libc.a was not respected by the linker, the old logic could wrongly cause POSIX symbols outside of the ISO C namespace to be pulled into pure C programs. this should not happen with well-behaved linkers, but relying on the link order was a bad idea anyway. files are renamed to better reflect their contents now that they don't need names to control their order as members in the archive file. --- src/thread/pthread_testcancel.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/thread/pthread_testcancel.c') diff --git a/src/thread/pthread_testcancel.c b/src/thread/pthread_testcancel.c index 33238c0f..ba5f7c6c 100644 --- a/src/thread/pthread_testcancel.c +++ b/src/thread/pthread_testcancel.c @@ -1,6 +1,11 @@ #include "pthread_impl.h" +#include "libc.h" -void __testcancel(void); +static void dummy() +{ +} + +weak_alias(dummy, __testcancel); void pthread_testcancel() { -- cgit v1.2.1