summaryrefslogtreecommitdiff
path: root/src/thread/cancel_dummy.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-07-06 22:56:25 -0400
committerRich Felker <dalias@aerifal.cx>2014-07-06 22:56:25 -0400
commitd96b12b755483208673fb05e2e60a15d3822752d (patch)
tree1a8eac2308bc9348b23417a462a271570d1ceea3 /src/thread/cancel_dummy.c
parentea496d6c63ecbb5ea475111808e5c0f799354450 (diff)
downloadmusl-d96b12b755483208673fb05e2e60a15d3822752d.tar.gz
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.
Diffstat (limited to 'src/thread/cancel_dummy.c')
-rw-r--r--src/thread/cancel_dummy.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/thread/cancel_dummy.c b/src/thread/cancel_dummy.c
deleted file mode 100644
index b630b02c..00000000
--- a/src/thread/cancel_dummy.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "pthread_impl.h"
-#include "syscall.h"
-
-static long sccp(syscall_arg_t nr,
- syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
- syscall_arg_t x, syscall_arg_t y, syscall_arg_t z)
-{
- return (__syscall)(nr, u, v, w, x, y, z);
-}
-
-weak_alias(sccp, __syscall_cp);
-
-static void dummy()
-{
-}
-
-weak_alias(dummy, __testcancel);