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.
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
#include <sys/syscall.h>
|
|
|
|
#ifdef SHARED
|
|
__attribute__((__visibility__("hidden")))
|
|
#endif
|
|
long __syscall_cp_internal(volatile void*, long long, long long, long long, long long,
|
|
long long, long long, long long);
|
|
|
|
struct __timespec { long long tv_sec; long tv_nsec; };
|
|
struct __timespec_kernel { long long tv_sec; long long tv_nsec; };
|
|
#define __tsc(X) ((struct __timespec*)(unsigned long)(X))
|
|
#define __fixup(X) do { if(X) X = (unsigned long) (&(struct __timespec_kernel) \
|
|
{ .tv_sec = __tsc(X)->tv_sec, .tv_nsec = __tsc(X)->tv_nsec}); } while(0)
|
|
|
|
#ifdef SHARED
|
|
__attribute__((__visibility__("hidden")))
|
|
#endif
|
|
long __syscall_cp_asm (volatile void * foo, long long n, long long a1, long long a2, long long a3,
|
|
long long a4, long long a5, long long a6) {
|
|
switch (n) {
|
|
case SYS_mq_timedsend: case SYS_mq_timedreceive: case SYS_pselect6:
|
|
__fixup(a5);
|
|
break;
|
|
case SYS_futex:
|
|
if((a2 & (~128 /* FUTEX_PRIVATE_FLAG */)) == 0 /* FUTEX_WAIT */)
|
|
__fixup(a4);
|
|
break;
|
|
case SYS_clock_nanosleep:
|
|
case SYS_rt_sigtimedwait: case SYS_ppoll:
|
|
__fixup(a3);
|
|
break;
|
|
case SYS_nanosleep:
|
|
__fixup(a1);
|
|
break;
|
|
}
|
|
return __syscall_cp_internal(foo, n, a1, a2, a3, a4, a5, a6);
|
|
}
|
|
|