add the new SO_REUSEPORT socket option to mips and powerpc
[musl] / arch / arm / syscall_arch.h
index 14ca852..1d87fae 100644 (file)
@@ -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