make arch __clone backends hidden
authorRich Felker <dalias@aerifal.cx>
Mon, 10 Sep 2018 19:36:33 +0000 (15:36 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 12 Sep 2018 18:34:31 +0000 (14:34 -0400)
these are not a public interface and are not intended to be callable
from anywhere but the public clone function or other places in libc.

16 files changed:
src/internal/pthread_impl.h
src/thread/aarch64/clone.s
src/thread/arm/clone.s
src/thread/i386/clone.s
src/thread/m68k/clone.s
src/thread/microblaze/clone.s
src/thread/mips/clone.s
src/thread/mips64/clone.s
src/thread/mipsn32/clone.s
src/thread/or1k/clone.s
src/thread/powerpc/clone.s
src/thread/powerpc64/clone.s
src/thread/s390x/clone.s
src/thread/sh/clone.s
src/thread/x32/clone.s
src/thread/x86_64/clone.s

index 3479bcf68398f8688e3c90d1570ac257b3570868..3c85544cca89d93661138c04887f8551c05c8405 100644 (file)
@@ -141,7 +141,7 @@ int __init_tp(void *);
 void *__copy_tls(unsigned char *);
 void __reset_tls();
 
-int __clone(int (*)(void *), void *, int, void *, ...);
+hidden int __clone(int (*)(void *), void *, int, void *, ...);
 int __set_thread_area(void *);
 int __libc_sigaction(int, const struct sigaction *, struct sigaction *);
 void __unmapself(void *, size_t);
index 50af913ce696796216e9d6551f92c7ac3a82dd97..e3c83395cad25634fbd6597aef8f7dc2e74046d5 100644 (file)
@@ -5,6 +5,7 @@
 //         x8,        x0,    x1,    x2,   x3,  x4
 
 .global __clone
+.hidden __clone
 .type   __clone,%function
 __clone:
        // align stack and save func,arg
index fe2e0e60ec4c9e5963fe55d5a940f4028f6c39da..e16b13260e60c9699aa084b1c98471b919d00e8d 100644 (file)
@@ -1,6 +1,7 @@
 .syntax unified
 .text
 .global __clone
+.hidden __clone
 .type   __clone,%function
 __clone:
        stmfd sp!,{r4,r5,r6,r7}
index 52fe7efbd442ca561bc9ddac05216433c9665a45..e237d3c6324b984601048c07d8b7976b6c6e601a 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type   __clone,@function
 __clone:
        push %ebp
index 5b61b6fa61d55782d3e9bb2feb3cde5a150be2d2..f6dfa06f49daef59a7e49b2e6525ec5e800fb5c5 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type   __clone,@function
 __clone:
        movem.l %d2-%d5,-(%sp)
index 13448a33a81acb005ceb61ddf4ec462a6dcb396d..b68cc5fc22130c1ee6460192f49a0033d133c84c 100644 (file)
@@ -1,4 +1,5 @@
 .global __clone
+.hidden __clone
 .type   __clone,@function
 
 # r5, r6, r7, r8, r9, r10, stack
index 30a0146bad8db6677546563aff3f073d397dab9e..0446338568f0a8add741a32427a5b042fc1036b4 100644 (file)
@@ -1,5 +1,6 @@
 .set noreorder
 .global __clone
+.hidden __clone
 .type   __clone,@function
 __clone:
        # Save function pointer and argument pointer on new thread stack
index 1b71e07c793c8a5c749abc21a8a91c4bddd68fcb..2d86899a1daa0c43991fb7e4ad07f929ad788d09 100644 (file)
@@ -1,5 +1,6 @@
 .set   noreorder
 .global        __clone
+.hidden __clone
 .type  __clone,@function
 __clone:
        # Save function pointer and argument pointer on new thread stack
index ebf5dbeae2b519695164ad61c154b37b241da9ae..4d3c8c7a2502e96a4eafa9b0eaf2534d4e23f59f 100644 (file)
@@ -1,5 +1,6 @@
 .set   noreorder
 .global        __clone
+.hidden __clone
 .type  __clone,@function
 __clone:
        # Save function pointer and argument pointer on new thread stack
index 02f380bd5f96db837840e4be2365c24e61252155..2473ac2040366733ca60059065a1520e7b367a1e 100644 (file)
@@ -3,6 +3,7 @@
  * sys_clone(flags, stack, ptid, ctid, tls)
  */
 .global __clone
+.hidden __clone
 .type   __clone,@function
 __clone:
        l.addi  r4, r4, -8
index a57dbcced8f357c13db3ac23e727823a5597da05..da13f446c03a3d134f7e0aa52c083e26ffa1c168 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type __clone, %function
 __clone:
 # int clone(fn, stack, flags, arg, ptid, tls, ctid)
index 03aa446819e95f3fd5aad74ff9a54c1ad24fb692..41cb6787a7bca59a9f0ff5e3545b8cf992b67bff 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type __clone, %function
 __clone:
        # int clone(fn, stack, flags, arg, ptid, tls, ctid)
index 3e08c21356b15ff216664d6aa899154cdf71fa11..577748eab3b3ab52968792b9730487d81cdfda47 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type __clone, %function
 __clone:
        # int clone(
index aa4d0dfd7e9fa29918cb31774ae6d0de7b77d4d2..9cfd8623c5d3cf1d5b9bc83d33a32a713f2e6d0a 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type   __clone, @function
 __clone:
 ! incoming: fn stack flags arg ptid tls      ctid
index eed461510baa9b1499996ab3c773268261c4ac07..b870880f93d4754f4b36e67affa388bb4784be6d 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type   __clone,@function
 __clone:
        movl $0x40000038,%eax /* SYS_clone */
index ee59903a2e336d2049c876e3bce7d78c1975dfe4..6e47bc0a37dee7157ceaf1369659891a2d7d16bb 100644 (file)
@@ -1,5 +1,6 @@
 .text
 .global __clone
+.hidden __clone
 .type   __clone,@function
 __clone:
        xor %eax,%eax