X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=arch%2Farm%2Fsyscall_arch.h;h=1d87fae1f6f67f03999b10f5117dd0a4fdf07c42;hb=ca2300d9ac006c3940e4ff1ce9c64ba64b9582b5;hp=14ca852533d14fdaf17342aff04fd49b14436a64;hpb=5e3c243d8df6b1504db9c1e6442d47ed38937e02;p=musl diff --git a/arch/arm/syscall_arch.h b/arch/arm/syscall_arch.h index 14ca8525..1d87fae1 100644 --- a/arch/arm/syscall_arch.h +++ b/arch/arm/syscall_arch.h @@ -3,8 +3,6 @@ ((union { long long ll; long l[2]; }){ .ll = x }).l[1] #define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x)) -#define __SYSCALL_SSLEN 8 - #ifndef __clang__ #define __asm_syscall(...) do { \ @@ -24,7 +22,7 @@ static inline long __syscall1(long n, long a) { register long r7 __asm__("r7") = n; register long r0 __asm__("r0") = a; - __asm_syscall("r"(r7), "r"(r0)); + __asm_syscall("r"(r7), "0"(r0)); } static inline long __syscall2(long n, long a, long b) @@ -32,7 +30,7 @@ static inline long __syscall2(long n, long a, long b) register long r7 __asm__("r7") = n; register long r0 __asm__("r0") = a; register long r1 __asm__("r1") = b; - __asm_syscall("r"(r7), "r"(r0), "r"(r1)); + __asm_syscall("r"(r7), "0"(r0), "r"(r1)); } static inline long __syscall3(long n, long a, long b, long c) @@ -41,7 +39,7 @@ static inline long __syscall3(long n, long a, long b, long c) register long r0 __asm__("r0") = a; register long r1 __asm__("r1") = b; register long r2 __asm__("r2") = c; - __asm_syscall("r"(r7), "r"(r0), "r"(r1), "r"(r2)); + __asm_syscall("r"(r7), "0"(r0), "r"(r1), "r"(r2)); } static inline long __syscall4(long n, long a, long b, long c, long d) @@ -51,7 +49,7 @@ static inline long __syscall4(long n, long a, long b, long c, long d) register long r1 __asm__("r1") = b; register long r2 __asm__("r2") = c; register long r3 __asm__("r3") = d; - __asm_syscall("r"(r7), "r"(r0), "r"(r1), "r"(r2), "r"(r3)); + __asm_syscall("r"(r7), "0"(r0), "r"(r1), "r"(r2), "r"(r3)); } #else