consistently use hidden visibility for cancellable syscall internals
authorRich Felker <dalias@aerifal.cx>
Tue, 14 Apr 2015 15:18:59 +0000 (11:18 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 14 Apr 2015 15:18:59 +0000 (11:18 -0400)
commitcbc02ba23cec16d7a821648ea8424546bc7f02dc
treec3650ae9dc0fe3506365371cb0fd0358df6597cf
parentbc081f628b51337b525ca2d53aeff1b971f092f5
consistently use hidden visibility for cancellable syscall internals

in a few places, non-hidden symbols were referenced from asm in ways
that assumed ld-time binding. while these is no semantic reason these
symbols need to be hidden, fixing the references without making them
hidden was going to be ugly, and hidden reduces some bloat anyway.

in the asm files, .global/.hidden directives have been moved to the
top to unclutter the actual code.
12 files changed:
arch/x32/src/syscall_cp_fixup.c
src/thread/aarch64/syscall_cp.s
src/thread/arm/syscall_cp.s
src/thread/i386/syscall_cp.s
src/thread/microblaze/syscall_cp.s
src/thread/mips/syscall_cp.s
src/thread/or1k/syscall_cp.s
src/thread/powerpc/syscall_cp.s
src/thread/pthread_cancel.c
src/thread/sh/syscall_cp.s
src/thread/x32/syscall_cp.s
src/thread/x86_64/syscall_cp.s