Merge "Make mips/mips64 syscall stubs more like the other architectures."
This commit is contained in:
commit
b69c0b532e
@ -37,23 +37,23 @@
|
|||||||
.align 4
|
.align 4
|
||||||
.ent __futex_wait
|
.ent __futex_wait
|
||||||
__futex_wait:
|
__futex_wait:
|
||||||
subu $sp,4*6
|
subu sp,4*6
|
||||||
sw $0,20($sp) /* val3 */
|
sw $0,20(sp) /* val3 */
|
||||||
sw $0,16($sp) /* addr2 */
|
sw $0,16(sp) /* addr2 */
|
||||||
move $a3,$a2 /* timespec */
|
move a3,a2 /* timespec */
|
||||||
move $a2,$a1 /* val */
|
move a2,a1 /* val */
|
||||||
li $a1,FUTEX_WAIT /* op */
|
li a1,FUTEX_WAIT /* op */
|
||||||
# move $a0,$a0 /* ftx */
|
# move a0,a0 /* ftx */
|
||||||
li $v0,__NR_futex
|
li v0,__NR_futex
|
||||||
syscall
|
syscall
|
||||||
.set noreorder
|
.set noreorder
|
||||||
bnez $a3, 1f /* Check for error */
|
bnez a3, 1f /* Check for error */
|
||||||
neg $v0 /* Negate error number if it's valid */
|
neg v0 /* Negate error number if it's valid */
|
||||||
move $v0,$0 /* Otherwise return 0 */
|
move v0,$0 /* Otherwise return 0 */
|
||||||
1:
|
1:
|
||||||
.set reorder
|
.set reorder
|
||||||
addu $sp,4*6
|
addu sp,4*6
|
||||||
j $ra
|
j ra
|
||||||
.end __futex_wait
|
.end __futex_wait
|
||||||
|
|
||||||
// int __futex_wake(volatile void* ftx, int count)
|
// int __futex_wake(volatile void* ftx, int count)
|
||||||
@ -62,23 +62,23 @@ __futex_wait:
|
|||||||
.align 4
|
.align 4
|
||||||
.ent __futex_wake
|
.ent __futex_wake
|
||||||
__futex_wake:
|
__futex_wake:
|
||||||
subu $sp,4*6
|
subu sp,4*6
|
||||||
sw $0,20($sp) /* val3 */
|
sw $0,20(sp) /* val3 */
|
||||||
sw $0,16($sp) /* addr2 */
|
sw $0,16(sp) /* addr2 */
|
||||||
move $a3,$0 /* timespec */
|
move a3,$0 /* timespec */
|
||||||
move $a2,$a1 /* val */
|
move a2,a1 /* val */
|
||||||
li $a1,FUTEX_WAKE /* op */
|
li a1,FUTEX_WAKE /* op */
|
||||||
# move $a0,$a0 /* ftx */
|
# move a0,a0 /* ftx */
|
||||||
li $v0,__NR_futex
|
li v0,__NR_futex
|
||||||
syscall
|
syscall
|
||||||
.set noreorder
|
.set noreorder
|
||||||
bnez $a3, 1f /* Check for error */
|
bnez a3, 1f /* Check for error */
|
||||||
neg $v0 /* Negate error number if it's valid */
|
neg v0 /* Negate error number if it's valid */
|
||||||
move $v0,$0 /* Otherwise return 0 */
|
move v0,$0 /* Otherwise return 0 */
|
||||||
1:
|
1:
|
||||||
.set reorder
|
.set reorder
|
||||||
addu $sp,4*6
|
addu sp,4*6
|
||||||
j $ra
|
j ra
|
||||||
.end __futex_wake
|
.end __futex_wake
|
||||||
|
|
||||||
// int __futex_syscall3(volatile void* ftx, int op, int count)
|
// int __futex_syscall3(volatile void* ftx, int op, int count)
|
||||||
@ -87,23 +87,23 @@ __futex_wake:
|
|||||||
.align 4
|
.align 4
|
||||||
.ent __futex_syscall3
|
.ent __futex_syscall3
|
||||||
__futex_syscall3:
|
__futex_syscall3:
|
||||||
subu $sp,4*6
|
subu sp,4*6
|
||||||
sw $0,20($sp) /* val3 */
|
sw $0,20(sp) /* val3 */
|
||||||
sw $0,16($sp) /* addr2 */
|
sw $0,16(sp) /* addr2 */
|
||||||
move $a3,$0 /* timespec */
|
move a3,$0 /* timespec */
|
||||||
# move $a2,$a2 /* val */
|
# move a2,a2 /* val */
|
||||||
# li $a1,$a1 /* op */
|
# li a1,a1 /* op */
|
||||||
# move $a0,$a0 /* ftx */
|
# move a0,a0 /* ftx */
|
||||||
li $v0,__NR_futex
|
li v0,__NR_futex
|
||||||
syscall
|
syscall
|
||||||
.set noreorder
|
.set noreorder
|
||||||
bnez $a3, 1f /* Check for error */
|
bnez a3, 1f /* Check for error */
|
||||||
neg $v0 /* Negate error number if it's valid */
|
neg v0 /* Negate error number if it's valid */
|
||||||
move $v0,$0 /* Otherwise return 0 */
|
move v0,$0 /* Otherwise return 0 */
|
||||||
1:
|
1:
|
||||||
.set reorder
|
.set reorder
|
||||||
addu $sp,4*6
|
addu sp,4*6
|
||||||
j $ra
|
j ra
|
||||||
.end __futex_syscall3
|
.end __futex_syscall3
|
||||||
|
|
||||||
// int __futex_syscall4(volatile void* ftx, int op, int val, const struct timespec* timeout)
|
// int __futex_syscall4(volatile void* ftx, int op, int val, const struct timespec* timeout)
|
||||||
@ -112,21 +112,21 @@ __futex_syscall3:
|
|||||||
.align 4
|
.align 4
|
||||||
.ent __futex_syscall4
|
.ent __futex_syscall4
|
||||||
__futex_syscall4:
|
__futex_syscall4:
|
||||||
subu $sp,4*6
|
subu sp,4*6
|
||||||
sw $0,20($sp) /* val3 */
|
sw $0,20(sp) /* val3 */
|
||||||
sw $0,16($sp) /* addr2 */
|
sw $0,16(sp) /* addr2 */
|
||||||
# move $a3,$a3 /* timespec */
|
# move a3,a3 /* timespec */
|
||||||
# move $a2,$a2 /* val */
|
# move a2,a2 /* val */
|
||||||
# li $a1,$a1 /* op */
|
# li a1,a1 /* op */
|
||||||
# move $a0,$a0 /* ftx */
|
# move a0,a0 /* ftx */
|
||||||
li $v0,__NR_futex
|
li v0,__NR_futex
|
||||||
syscall
|
syscall
|
||||||
.set noreorder
|
.set noreorder
|
||||||
bnez $a3, 1f /* Check for error */
|
bnez a3, 1f /* Check for error */
|
||||||
neg $v0 /* Negate error number if it's valid */
|
neg v0 /* Negate error number if it's valid */
|
||||||
move $v0,$0 /* Otherwise return 0 */
|
move v0,$0 /* Otherwise return 0 */
|
||||||
1:
|
1:
|
||||||
.set reorder
|
.set reorder
|
||||||
addu $sp,4*6
|
addu sp,4*6
|
||||||
j $ra
|
j ra
|
||||||
.end __futex_syscall4
|
.end __futex_syscall4
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __brk
|
|
||||||
.align 4
|
|
||||||
.ent __brk
|
|
||||||
|
|
||||||
__brk:
|
ENTRY(__brk)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_brk
|
li v0, __NR_brk
|
||||||
@ -22,4 +16,4 @@ __brk:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __brk
|
END(__brk)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __epoll_pwait
|
|
||||||
.align 4
|
|
||||||
.ent __epoll_pwait
|
|
||||||
|
|
||||||
__epoll_pwait:
|
ENTRY(__epoll_pwait)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_epoll_pwait
|
li v0, __NR_epoll_pwait
|
||||||
@ -22,4 +16,4 @@ __epoll_pwait:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __epoll_pwait
|
END(__epoll_pwait)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __exit
|
|
||||||
.align 4
|
|
||||||
.ent __exit
|
|
||||||
|
|
||||||
__exit:
|
ENTRY(__exit)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_exit
|
li v0, __NR_exit
|
||||||
@ -22,4 +16,4 @@ __exit:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __exit
|
END(__exit)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __fcntl64
|
|
||||||
.align 4
|
|
||||||
.ent __fcntl64
|
|
||||||
|
|
||||||
__fcntl64:
|
ENTRY(__fcntl64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fcntl64
|
li v0, __NR_fcntl64
|
||||||
@ -22,4 +16,4 @@ __fcntl64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __fcntl64
|
END(__fcntl64)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __fstatfs64
|
|
||||||
.align 4
|
|
||||||
.ent __fstatfs64
|
|
||||||
|
|
||||||
__fstatfs64:
|
ENTRY(__fstatfs64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fstatfs64
|
li v0, __NR_fstatfs64
|
||||||
@ -22,4 +16,4 @@ __fstatfs64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __fstatfs64
|
END(__fstatfs64)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __getcpu
|
|
||||||
.align 4
|
|
||||||
.ent __getcpu
|
|
||||||
|
|
||||||
__getcpu:
|
ENTRY(__getcpu)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getcpu
|
li v0, __NR_getcpu
|
||||||
@ -22,4 +16,4 @@ __getcpu:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __getcpu
|
END(__getcpu)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __getcwd
|
|
||||||
.align 4
|
|
||||||
.ent __getcwd
|
|
||||||
|
|
||||||
__getcwd:
|
ENTRY(__getcwd)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getcwd
|
li v0, __NR_getcwd
|
||||||
@ -22,4 +16,4 @@ __getcwd:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __getcwd
|
END(__getcwd)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __getpriority
|
|
||||||
.align 4
|
|
||||||
.ent __getpriority
|
|
||||||
|
|
||||||
__getpriority:
|
ENTRY(__getpriority)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getpriority
|
li v0, __NR_getpriority
|
||||||
@ -22,4 +16,4 @@ __getpriority:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __getpriority
|
END(__getpriority)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __ioctl
|
|
||||||
.align 4
|
|
||||||
.ent __ioctl
|
|
||||||
|
|
||||||
__ioctl:
|
ENTRY(__ioctl)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_ioctl
|
li v0, __NR_ioctl
|
||||||
@ -22,4 +16,4 @@ __ioctl:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __ioctl
|
END(__ioctl)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __llseek
|
|
||||||
.align 4
|
|
||||||
.ent __llseek
|
|
||||||
|
|
||||||
__llseek:
|
ENTRY(__llseek)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR__llseek
|
li v0, __NR__llseek
|
||||||
@ -22,4 +16,4 @@ __llseek:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __llseek
|
END(__llseek)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __mmap2
|
|
||||||
.align 4
|
|
||||||
.ent __mmap2
|
|
||||||
|
|
||||||
__mmap2:
|
ENTRY(__mmap2)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_mmap2
|
li v0, __NR_mmap2
|
||||||
@ -22,4 +16,4 @@ __mmap2:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __mmap2
|
END(__mmap2)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __openat
|
|
||||||
.align 4
|
|
||||||
.ent __openat
|
|
||||||
|
|
||||||
__openat:
|
ENTRY(__openat)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_openat
|
li v0, __NR_openat
|
||||||
@ -22,4 +16,4 @@ __openat:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __openat
|
END(__openat)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __ppoll
|
|
||||||
.align 4
|
|
||||||
.ent __ppoll
|
|
||||||
|
|
||||||
__ppoll:
|
ENTRY(__ppoll)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_ppoll
|
li v0, __NR_ppoll
|
||||||
@ -22,4 +16,4 @@ __ppoll:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __ppoll
|
END(__ppoll)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __pselect6
|
|
||||||
.align 4
|
|
||||||
.ent __pselect6
|
|
||||||
|
|
||||||
__pselect6:
|
ENTRY(__pselect6)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_pselect6
|
li v0, __NR_pselect6
|
||||||
@ -22,4 +16,4 @@ __pselect6:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __pselect6
|
END(__pselect6)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __ptrace
|
|
||||||
.align 4
|
|
||||||
.ent __ptrace
|
|
||||||
|
|
||||||
__ptrace:
|
ENTRY(__ptrace)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_ptrace
|
li v0, __NR_ptrace
|
||||||
@ -22,4 +16,4 @@ __ptrace:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __ptrace
|
END(__ptrace)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __reboot
|
|
||||||
.align 4
|
|
||||||
.ent __reboot
|
|
||||||
|
|
||||||
__reboot:
|
ENTRY(__reboot)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_reboot
|
li v0, __NR_reboot
|
||||||
@ -22,4 +16,4 @@ __reboot:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __reboot
|
END(__reboot)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __rt_sigaction
|
|
||||||
.align 4
|
|
||||||
.ent __rt_sigaction
|
|
||||||
|
|
||||||
__rt_sigaction:
|
ENTRY(__rt_sigaction)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_rt_sigaction
|
li v0, __NR_rt_sigaction
|
||||||
@ -22,4 +16,4 @@ __rt_sigaction:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __rt_sigaction
|
END(__rt_sigaction)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __rt_sigpending
|
|
||||||
.align 4
|
|
||||||
.ent __rt_sigpending
|
|
||||||
|
|
||||||
__rt_sigpending:
|
ENTRY(__rt_sigpending)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_rt_sigpending
|
li v0, __NR_rt_sigpending
|
||||||
@ -22,4 +16,4 @@ __rt_sigpending:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __rt_sigpending
|
END(__rt_sigpending)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __rt_sigprocmask
|
|
||||||
.align 4
|
|
||||||
.ent __rt_sigprocmask
|
|
||||||
|
|
||||||
__rt_sigprocmask:
|
ENTRY(__rt_sigprocmask)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_rt_sigprocmask
|
li v0, __NR_rt_sigprocmask
|
||||||
@ -22,4 +16,4 @@ __rt_sigprocmask:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __rt_sigprocmask
|
END(__rt_sigprocmask)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __rt_sigsuspend
|
|
||||||
.align 4
|
|
||||||
.ent __rt_sigsuspend
|
|
||||||
|
|
||||||
__rt_sigsuspend:
|
ENTRY(__rt_sigsuspend)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_rt_sigsuspend
|
li v0, __NR_rt_sigsuspend
|
||||||
@ -22,4 +16,4 @@ __rt_sigsuspend:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __rt_sigsuspend
|
END(__rt_sigsuspend)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __rt_sigtimedwait
|
|
||||||
.align 4
|
|
||||||
.ent __rt_sigtimedwait
|
|
||||||
|
|
||||||
__rt_sigtimedwait:
|
ENTRY(__rt_sigtimedwait)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_rt_sigtimedwait
|
li v0, __NR_rt_sigtimedwait
|
||||||
@ -22,4 +16,4 @@ __rt_sigtimedwait:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __rt_sigtimedwait
|
END(__rt_sigtimedwait)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __sched_getaffinity
|
|
||||||
.align 4
|
|
||||||
.ent __sched_getaffinity
|
|
||||||
|
|
||||||
__sched_getaffinity:
|
ENTRY(__sched_getaffinity)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_sched_getaffinity
|
li v0, __NR_sched_getaffinity
|
||||||
@ -22,4 +16,4 @@ __sched_getaffinity:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __sched_getaffinity
|
END(__sched_getaffinity)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __set_thread_area
|
|
||||||
.align 4
|
|
||||||
.ent __set_thread_area
|
|
||||||
|
|
||||||
__set_thread_area:
|
ENTRY(__set_thread_area)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_set_thread_area
|
li v0, __NR_set_thread_area
|
||||||
@ -22,4 +16,4 @@ __set_thread_area:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __set_thread_area
|
END(__set_thread_area)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __set_tid_address
|
|
||||||
.align 4
|
|
||||||
.ent __set_tid_address
|
|
||||||
|
|
||||||
__set_tid_address:
|
ENTRY(__set_tid_address)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_set_tid_address
|
li v0, __NR_set_tid_address
|
||||||
@ -22,4 +16,4 @@ __set_tid_address:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __set_tid_address
|
END(__set_tid_address)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __sigaction
|
|
||||||
.align 4
|
|
||||||
.ent __sigaction
|
|
||||||
|
|
||||||
__sigaction:
|
ENTRY(__sigaction)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_sigaction
|
li v0, __NR_sigaction
|
||||||
@ -22,4 +16,4 @@ __sigaction:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __sigaction
|
END(__sigaction)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __statfs64
|
|
||||||
.align 4
|
|
||||||
.ent __statfs64
|
|
||||||
|
|
||||||
__statfs64:
|
ENTRY(__statfs64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_statfs64
|
li v0, __NR_statfs64
|
||||||
@ -22,4 +16,4 @@ __statfs64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __statfs64
|
END(__statfs64)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __syslog
|
|
||||||
.align 4
|
|
||||||
.ent __syslog
|
|
||||||
|
|
||||||
__syslog:
|
ENTRY(__syslog)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_syslog
|
li v0, __NR_syslog
|
||||||
@ -22,4 +16,4 @@ __syslog:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __syslog
|
END(__syslog)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __timer_create
|
|
||||||
.align 4
|
|
||||||
.ent __timer_create
|
|
||||||
|
|
||||||
__timer_create:
|
ENTRY(__timer_create)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_timer_create
|
li v0, __NR_timer_create
|
||||||
@ -22,4 +16,4 @@ __timer_create:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __timer_create
|
END(__timer_create)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __timer_delete
|
|
||||||
.align 4
|
|
||||||
.ent __timer_delete
|
|
||||||
|
|
||||||
__timer_delete:
|
ENTRY(__timer_delete)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_timer_delete
|
li v0, __NR_timer_delete
|
||||||
@ -22,4 +16,4 @@ __timer_delete:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __timer_delete
|
END(__timer_delete)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __timer_getoverrun
|
|
||||||
.align 4
|
|
||||||
.ent __timer_getoverrun
|
|
||||||
|
|
||||||
__timer_getoverrun:
|
ENTRY(__timer_getoverrun)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_timer_getoverrun
|
li v0, __NR_timer_getoverrun
|
||||||
@ -22,4 +16,4 @@ __timer_getoverrun:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __timer_getoverrun
|
END(__timer_getoverrun)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __timer_gettime
|
|
||||||
.align 4
|
|
||||||
.ent __timer_gettime
|
|
||||||
|
|
||||||
__timer_gettime:
|
ENTRY(__timer_gettime)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_timer_gettime
|
li v0, __NR_timer_gettime
|
||||||
@ -22,4 +16,4 @@ __timer_gettime:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __timer_gettime
|
END(__timer_gettime)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __timer_settime
|
|
||||||
.align 4
|
|
||||||
.ent __timer_settime
|
|
||||||
|
|
||||||
__timer_settime:
|
ENTRY(__timer_settime)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_timer_settime
|
li v0, __NR_timer_settime
|
||||||
@ -22,4 +16,4 @@ __timer_settime:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __timer_settime
|
END(__timer_settime)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl __waitid
|
|
||||||
.align 4
|
|
||||||
.ent __waitid
|
|
||||||
|
|
||||||
__waitid:
|
ENTRY(__waitid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_waitid
|
li v0, __NR_waitid
|
||||||
@ -22,4 +16,4 @@ __waitid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end __waitid
|
END(__waitid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl _exit
|
|
||||||
.align 4
|
|
||||||
.ent _exit
|
|
||||||
|
|
||||||
_exit:
|
ENTRY(_exit)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_exit_group
|
li v0, __NR_exit_group
|
||||||
@ -22,4 +16,4 @@ _exit:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end _exit
|
END(_exit)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl _flush_cache
|
|
||||||
.align 4
|
|
||||||
.ent _flush_cache
|
|
||||||
|
|
||||||
_flush_cache:
|
ENTRY(_flush_cache)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_cacheflush
|
li v0, __NR_cacheflush
|
||||||
@ -22,4 +16,4 @@ _flush_cache:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end _flush_cache
|
END(_flush_cache)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl accept
|
|
||||||
.align 4
|
|
||||||
.ent accept
|
|
||||||
|
|
||||||
accept:
|
ENTRY(accept)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_accept
|
li v0, __NR_accept
|
||||||
@ -22,4 +16,4 @@ accept:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end accept
|
END(accept)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl acct
|
|
||||||
.align 4
|
|
||||||
.ent acct
|
|
||||||
|
|
||||||
acct:
|
ENTRY(acct)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_acct
|
li v0, __NR_acct
|
||||||
@ -22,4 +16,4 @@ acct:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end acct
|
END(acct)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl bind
|
|
||||||
.align 4
|
|
||||||
.ent bind
|
|
||||||
|
|
||||||
bind:
|
ENTRY(bind)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_bind
|
li v0, __NR_bind
|
||||||
@ -22,4 +16,4 @@ bind:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end bind
|
END(bind)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl capget
|
|
||||||
.align 4
|
|
||||||
.ent capget
|
|
||||||
|
|
||||||
capget:
|
ENTRY(capget)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_capget
|
li v0, __NR_capget
|
||||||
@ -22,4 +16,4 @@ capget:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end capget
|
END(capget)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl capset
|
|
||||||
.align 4
|
|
||||||
.ent capset
|
|
||||||
|
|
||||||
capset:
|
ENTRY(capset)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_capset
|
li v0, __NR_capset
|
||||||
@ -22,4 +16,4 @@ capset:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end capset
|
END(capset)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl chdir
|
|
||||||
.align 4
|
|
||||||
.ent chdir
|
|
||||||
|
|
||||||
chdir:
|
ENTRY(chdir)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_chdir
|
li v0, __NR_chdir
|
||||||
@ -22,4 +16,4 @@ chdir:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end chdir
|
END(chdir)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl chroot
|
|
||||||
.align 4
|
|
||||||
.ent chroot
|
|
||||||
|
|
||||||
chroot:
|
ENTRY(chroot)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_chroot
|
li v0, __NR_chroot
|
||||||
@ -22,4 +16,4 @@ chroot:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end chroot
|
END(chroot)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl clock_getres
|
|
||||||
.align 4
|
|
||||||
.ent clock_getres
|
|
||||||
|
|
||||||
clock_getres:
|
ENTRY(clock_getres)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_clock_getres
|
li v0, __NR_clock_getres
|
||||||
@ -22,4 +16,4 @@ clock_getres:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end clock_getres
|
END(clock_getres)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl clock_gettime
|
|
||||||
.align 4
|
|
||||||
.ent clock_gettime
|
|
||||||
|
|
||||||
clock_gettime:
|
ENTRY(clock_gettime)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_clock_gettime
|
li v0, __NR_clock_gettime
|
||||||
@ -22,4 +16,4 @@ clock_gettime:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end clock_gettime
|
END(clock_gettime)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl clock_nanosleep
|
|
||||||
.align 4
|
|
||||||
.ent clock_nanosleep
|
|
||||||
|
|
||||||
clock_nanosleep:
|
ENTRY(clock_nanosleep)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_clock_nanosleep
|
li v0, __NR_clock_nanosleep
|
||||||
@ -22,4 +16,4 @@ clock_nanosleep:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end clock_nanosleep
|
END(clock_nanosleep)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl clock_settime
|
|
||||||
.align 4
|
|
||||||
.ent clock_settime
|
|
||||||
|
|
||||||
clock_settime:
|
ENTRY(clock_settime)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_clock_settime
|
li v0, __NR_clock_settime
|
||||||
@ -22,4 +16,4 @@ clock_settime:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end clock_settime
|
END(clock_settime)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl close
|
|
||||||
.align 4
|
|
||||||
.ent close
|
|
||||||
|
|
||||||
close:
|
ENTRY(close)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_close
|
li v0, __NR_close
|
||||||
@ -22,4 +16,4 @@ close:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end close
|
END(close)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl connect
|
|
||||||
.align 4
|
|
||||||
.ent connect
|
|
||||||
|
|
||||||
connect:
|
ENTRY(connect)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_connect
|
li v0, __NR_connect
|
||||||
@ -22,4 +16,4 @@ connect:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end connect
|
END(connect)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl delete_module
|
|
||||||
.align 4
|
|
||||||
.ent delete_module
|
|
||||||
|
|
||||||
delete_module:
|
ENTRY(delete_module)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_delete_module
|
li v0, __NR_delete_module
|
||||||
@ -22,4 +16,4 @@ delete_module:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end delete_module
|
END(delete_module)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl dup
|
|
||||||
.align 4
|
|
||||||
.ent dup
|
|
||||||
|
|
||||||
dup:
|
ENTRY(dup)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_dup
|
li v0, __NR_dup
|
||||||
@ -22,4 +16,4 @@ dup:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end dup
|
END(dup)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl dup3
|
|
||||||
.align 4
|
|
||||||
.ent dup3
|
|
||||||
|
|
||||||
dup3:
|
ENTRY(dup3)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_dup3
|
li v0, __NR_dup3
|
||||||
@ -22,4 +16,4 @@ dup3:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end dup3
|
END(dup3)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl epoll_create1
|
|
||||||
.align 4
|
|
||||||
.ent epoll_create1
|
|
||||||
|
|
||||||
epoll_create1:
|
ENTRY(epoll_create1)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_epoll_create1
|
li v0, __NR_epoll_create1
|
||||||
@ -22,4 +16,4 @@ epoll_create1:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end epoll_create1
|
END(epoll_create1)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl epoll_ctl
|
|
||||||
.align 4
|
|
||||||
.ent epoll_ctl
|
|
||||||
|
|
||||||
epoll_ctl:
|
ENTRY(epoll_ctl)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_epoll_ctl
|
li v0, __NR_epoll_ctl
|
||||||
@ -22,4 +16,4 @@ epoll_ctl:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end epoll_ctl
|
END(epoll_ctl)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl eventfd
|
|
||||||
.align 4
|
|
||||||
.ent eventfd
|
|
||||||
|
|
||||||
eventfd:
|
ENTRY(eventfd)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_eventfd2
|
li v0, __NR_eventfd2
|
||||||
@ -22,4 +16,4 @@ eventfd:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end eventfd
|
END(eventfd)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl execve
|
|
||||||
.align 4
|
|
||||||
.ent execve
|
|
||||||
|
|
||||||
execve:
|
ENTRY(execve)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_execve
|
li v0, __NR_execve
|
||||||
@ -22,4 +16,4 @@ execve:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end execve
|
END(execve)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl faccessat
|
|
||||||
.align 4
|
|
||||||
.ent faccessat
|
|
||||||
|
|
||||||
faccessat:
|
ENTRY(faccessat)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_faccessat
|
li v0, __NR_faccessat
|
||||||
@ -22,4 +16,4 @@ faccessat:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end faccessat
|
END(faccessat)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fallocate64
|
|
||||||
.align 4
|
|
||||||
.ent fallocate64
|
|
||||||
|
|
||||||
fallocate64:
|
ENTRY(fallocate64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fallocate
|
li v0, __NR_fallocate
|
||||||
@ -22,4 +16,4 @@ fallocate64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fallocate64
|
END(fallocate64)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fchdir
|
|
||||||
.align 4
|
|
||||||
.ent fchdir
|
|
||||||
|
|
||||||
fchdir:
|
ENTRY(fchdir)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fchdir
|
li v0, __NR_fchdir
|
||||||
@ -22,4 +16,4 @@ fchdir:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fchdir
|
END(fchdir)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fchmod
|
|
||||||
.align 4
|
|
||||||
.ent fchmod
|
|
||||||
|
|
||||||
fchmod:
|
ENTRY(fchmod)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fchmod
|
li v0, __NR_fchmod
|
||||||
@ -22,4 +16,4 @@ fchmod:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fchmod
|
END(fchmod)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fchmodat
|
|
||||||
.align 4
|
|
||||||
.ent fchmodat
|
|
||||||
|
|
||||||
fchmodat:
|
ENTRY(fchmodat)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fchmodat
|
li v0, __NR_fchmodat
|
||||||
@ -22,4 +16,4 @@ fchmodat:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fchmodat
|
END(fchmodat)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fchown
|
|
||||||
.align 4
|
|
||||||
.ent fchown
|
|
||||||
|
|
||||||
fchown:
|
ENTRY(fchown)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fchown
|
li v0, __NR_fchown
|
||||||
@ -22,4 +16,4 @@ fchown:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fchown
|
END(fchown)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fchownat
|
|
||||||
.align 4
|
|
||||||
.ent fchownat
|
|
||||||
|
|
||||||
fchownat:
|
ENTRY(fchownat)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fchownat
|
li v0, __NR_fchownat
|
||||||
@ -22,4 +16,4 @@ fchownat:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fchownat
|
END(fchownat)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fdatasync
|
|
||||||
.align 4
|
|
||||||
.ent fdatasync
|
|
||||||
|
|
||||||
fdatasync:
|
ENTRY(fdatasync)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fdatasync
|
li v0, __NR_fdatasync
|
||||||
@ -22,4 +16,4 @@ fdatasync:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fdatasync
|
END(fdatasync)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fgetxattr
|
|
||||||
.align 4
|
|
||||||
.ent fgetxattr
|
|
||||||
|
|
||||||
fgetxattr:
|
ENTRY(fgetxattr)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fgetxattr
|
li v0, __NR_fgetxattr
|
||||||
@ -22,4 +16,4 @@ fgetxattr:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fgetxattr
|
END(fgetxattr)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl flistxattr
|
|
||||||
.align 4
|
|
||||||
.ent flistxattr
|
|
||||||
|
|
||||||
flistxattr:
|
ENTRY(flistxattr)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_flistxattr
|
li v0, __NR_flistxattr
|
||||||
@ -22,4 +16,4 @@ flistxattr:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end flistxattr
|
END(flistxattr)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl flock
|
|
||||||
.align 4
|
|
||||||
.ent flock
|
|
||||||
|
|
||||||
flock:
|
ENTRY(flock)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_flock
|
li v0, __NR_flock
|
||||||
@ -22,4 +16,4 @@ flock:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end flock
|
END(flock)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fremovexattr
|
|
||||||
.align 4
|
|
||||||
.ent fremovexattr
|
|
||||||
|
|
||||||
fremovexattr:
|
ENTRY(fremovexattr)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fremovexattr
|
li v0, __NR_fremovexattr
|
||||||
@ -22,4 +16,4 @@ fremovexattr:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fremovexattr
|
END(fremovexattr)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fsetxattr
|
|
||||||
.align 4
|
|
||||||
.ent fsetxattr
|
|
||||||
|
|
||||||
fsetxattr:
|
ENTRY(fsetxattr)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fsetxattr
|
li v0, __NR_fsetxattr
|
||||||
@ -22,4 +16,4 @@ fsetxattr:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fsetxattr
|
END(fsetxattr)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fstat64
|
|
||||||
.align 4
|
|
||||||
.ent fstat64
|
|
||||||
|
|
||||||
fstat64:
|
ENTRY(fstat64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fstat64
|
li v0, __NR_fstat64
|
||||||
@ -22,7 +16,7 @@ fstat64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fstat64
|
END(fstat64)
|
||||||
|
|
||||||
.globl fstat
|
.globl fstat
|
||||||
.equ fstat, fstat64
|
.equ fstat, fstat64
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fstatat64
|
|
||||||
.align 4
|
|
||||||
.ent fstatat64
|
|
||||||
|
|
||||||
fstatat64:
|
ENTRY(fstatat64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fstatat64
|
li v0, __NR_fstatat64
|
||||||
@ -22,7 +16,7 @@ fstatat64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fstatat64
|
END(fstatat64)
|
||||||
|
|
||||||
.globl fstatat
|
.globl fstatat
|
||||||
.equ fstatat, fstatat64
|
.equ fstatat, fstatat64
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl fsync
|
|
||||||
.align 4
|
|
||||||
.ent fsync
|
|
||||||
|
|
||||||
fsync:
|
ENTRY(fsync)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_fsync
|
li v0, __NR_fsync
|
||||||
@ -22,4 +16,4 @@ fsync:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end fsync
|
END(fsync)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl ftruncate
|
|
||||||
.align 4
|
|
||||||
.ent ftruncate
|
|
||||||
|
|
||||||
ftruncate:
|
ENTRY(ftruncate)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_ftruncate
|
li v0, __NR_ftruncate
|
||||||
@ -22,4 +16,4 @@ ftruncate:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end ftruncate
|
END(ftruncate)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl ftruncate64
|
|
||||||
.align 4
|
|
||||||
.ent ftruncate64
|
|
||||||
|
|
||||||
ftruncate64:
|
ENTRY(ftruncate64)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_ftruncate64
|
li v0, __NR_ftruncate64
|
||||||
@ -22,4 +16,4 @@ ftruncate64:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end ftruncate64
|
END(ftruncate64)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl futex
|
|
||||||
.align 4
|
|
||||||
.ent futex
|
|
||||||
|
|
||||||
futex:
|
ENTRY(futex)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_futex
|
li v0, __NR_futex
|
||||||
@ -22,4 +16,4 @@ futex:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end futex
|
END(futex)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getdents
|
|
||||||
.align 4
|
|
||||||
.ent getdents
|
|
||||||
|
|
||||||
getdents:
|
ENTRY(getdents)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getdents64
|
li v0, __NR_getdents64
|
||||||
@ -22,4 +16,4 @@ getdents:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getdents
|
END(getdents)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getegid
|
|
||||||
.align 4
|
|
||||||
.ent getegid
|
|
||||||
|
|
||||||
getegid:
|
ENTRY(getegid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getegid
|
li v0, __NR_getegid
|
||||||
@ -22,4 +16,4 @@ getegid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getegid
|
END(getegid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl geteuid
|
|
||||||
.align 4
|
|
||||||
.ent geteuid
|
|
||||||
|
|
||||||
geteuid:
|
ENTRY(geteuid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_geteuid
|
li v0, __NR_geteuid
|
||||||
@ -22,4 +16,4 @@ geteuid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end geteuid
|
END(geteuid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getgid
|
|
||||||
.align 4
|
|
||||||
.ent getgid
|
|
||||||
|
|
||||||
getgid:
|
ENTRY(getgid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getgid
|
li v0, __NR_getgid
|
||||||
@ -22,4 +16,4 @@ getgid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getgid
|
END(getgid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getgroups
|
|
||||||
.align 4
|
|
||||||
.ent getgroups
|
|
||||||
|
|
||||||
getgroups:
|
ENTRY(getgroups)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getgroups
|
li v0, __NR_getgroups
|
||||||
@ -22,4 +16,4 @@ getgroups:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getgroups
|
END(getgroups)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getitimer
|
|
||||||
.align 4
|
|
||||||
.ent getitimer
|
|
||||||
|
|
||||||
getitimer:
|
ENTRY(getitimer)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getitimer
|
li v0, __NR_getitimer
|
||||||
@ -22,4 +16,4 @@ getitimer:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getitimer
|
END(getitimer)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getpeername
|
|
||||||
.align 4
|
|
||||||
.ent getpeername
|
|
||||||
|
|
||||||
getpeername:
|
ENTRY(getpeername)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getpeername
|
li v0, __NR_getpeername
|
||||||
@ -22,4 +16,4 @@ getpeername:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getpeername
|
END(getpeername)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getpgid
|
|
||||||
.align 4
|
|
||||||
.ent getpgid
|
|
||||||
|
|
||||||
getpgid:
|
ENTRY(getpgid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getpgid
|
li v0, __NR_getpgid
|
||||||
@ -22,4 +16,4 @@ getpgid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getpgid
|
END(getpgid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getpid
|
|
||||||
.align 4
|
|
||||||
.ent getpid
|
|
||||||
|
|
||||||
getpid:
|
ENTRY(getpid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getpid
|
li v0, __NR_getpid
|
||||||
@ -22,4 +16,4 @@ getpid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getpid
|
END(getpid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getppid
|
|
||||||
.align 4
|
|
||||||
.ent getppid
|
|
||||||
|
|
||||||
getppid:
|
ENTRY(getppid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getppid
|
li v0, __NR_getppid
|
||||||
@ -22,4 +16,4 @@ getppid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getppid
|
END(getppid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getresgid
|
|
||||||
.align 4
|
|
||||||
.ent getresgid
|
|
||||||
|
|
||||||
getresgid:
|
ENTRY(getresgid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getresgid
|
li v0, __NR_getresgid
|
||||||
@ -22,4 +16,4 @@ getresgid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getresgid
|
END(getresgid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getresuid
|
|
||||||
.align 4
|
|
||||||
.ent getresuid
|
|
||||||
|
|
||||||
getresuid:
|
ENTRY(getresuid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getresuid
|
li v0, __NR_getresuid
|
||||||
@ -22,4 +16,4 @@ getresuid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getresuid
|
END(getresuid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getrlimit
|
|
||||||
.align 4
|
|
||||||
.ent getrlimit
|
|
||||||
|
|
||||||
getrlimit:
|
ENTRY(getrlimit)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getrlimit
|
li v0, __NR_getrlimit
|
||||||
@ -22,4 +16,4 @@ getrlimit:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getrlimit
|
END(getrlimit)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getrusage
|
|
||||||
.align 4
|
|
||||||
.ent getrusage
|
|
||||||
|
|
||||||
getrusage:
|
ENTRY(getrusage)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getrusage
|
li v0, __NR_getrusage
|
||||||
@ -22,4 +16,4 @@ getrusage:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getrusage
|
END(getrusage)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getsid
|
|
||||||
.align 4
|
|
||||||
.ent getsid
|
|
||||||
|
|
||||||
getsid:
|
ENTRY(getsid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getsid
|
li v0, __NR_getsid
|
||||||
@ -22,4 +16,4 @@ getsid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getsid
|
END(getsid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getsockname
|
|
||||||
.align 4
|
|
||||||
.ent getsockname
|
|
||||||
|
|
||||||
getsockname:
|
ENTRY(getsockname)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getsockname
|
li v0, __NR_getsockname
|
||||||
@ -22,4 +16,4 @@ getsockname:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getsockname
|
END(getsockname)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getsockopt
|
|
||||||
.align 4
|
|
||||||
.ent getsockopt
|
|
||||||
|
|
||||||
getsockopt:
|
ENTRY(getsockopt)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getsockopt
|
li v0, __NR_getsockopt
|
||||||
@ -22,4 +16,4 @@ getsockopt:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getsockopt
|
END(getsockopt)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl gettid
|
|
||||||
.align 4
|
|
||||||
.ent gettid
|
|
||||||
|
|
||||||
gettid:
|
ENTRY(gettid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_gettid
|
li v0, __NR_gettid
|
||||||
@ -22,4 +16,4 @@ gettid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end gettid
|
END(gettid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl gettimeofday
|
|
||||||
.align 4
|
|
||||||
.ent gettimeofday
|
|
||||||
|
|
||||||
gettimeofday:
|
ENTRY(gettimeofday)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_gettimeofday
|
li v0, __NR_gettimeofday
|
||||||
@ -22,4 +16,4 @@ gettimeofday:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end gettimeofday
|
END(gettimeofday)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getuid
|
|
||||||
.align 4
|
|
||||||
.ent getuid
|
|
||||||
|
|
||||||
getuid:
|
ENTRY(getuid)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getuid
|
li v0, __NR_getuid
|
||||||
@ -22,4 +16,4 @@ getuid:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getuid
|
END(getuid)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl getxattr
|
|
||||||
.align 4
|
|
||||||
.ent getxattr
|
|
||||||
|
|
||||||
getxattr:
|
ENTRY(getxattr)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_getxattr
|
li v0, __NR_getxattr
|
||||||
@ -22,4 +16,4 @@ getxattr:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end getxattr
|
END(getxattr)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl init_module
|
|
||||||
.align 4
|
|
||||||
.ent init_module
|
|
||||||
|
|
||||||
init_module:
|
ENTRY(init_module)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_init_module
|
li v0, __NR_init_module
|
||||||
@ -22,4 +16,4 @@ init_module:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end init_module
|
END(init_module)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl inotify_add_watch
|
|
||||||
.align 4
|
|
||||||
.ent inotify_add_watch
|
|
||||||
|
|
||||||
inotify_add_watch:
|
ENTRY(inotify_add_watch)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_inotify_add_watch
|
li v0, __NR_inotify_add_watch
|
||||||
@ -22,4 +16,4 @@ inotify_add_watch:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end inotify_add_watch
|
END(inotify_add_watch)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl inotify_init1
|
|
||||||
.align 4
|
|
||||||
.ent inotify_init1
|
|
||||||
|
|
||||||
inotify_init1:
|
ENTRY(inotify_init1)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_inotify_init1
|
li v0, __NR_inotify_init1
|
||||||
@ -22,4 +16,4 @@ inotify_init1:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end inotify_init1
|
END(inotify_init1)
|
||||||
|
@ -1,14 +1,8 @@
|
|||||||
/* Generated by gensyscalls.py. Do not edit. */
|
/* Generated by gensyscalls.py. Do not edit. */
|
||||||
|
|
||||||
#include <asm/unistd.h>
|
#include <private/bionic_asm.h>
|
||||||
#include <machine/asm.h>
|
|
||||||
#include <machine/regdef.h>
|
|
||||||
.text
|
|
||||||
.globl inotify_rm_watch
|
|
||||||
.align 4
|
|
||||||
.ent inotify_rm_watch
|
|
||||||
|
|
||||||
inotify_rm_watch:
|
ENTRY(inotify_rm_watch)
|
||||||
.set noreorder
|
.set noreorder
|
||||||
.cpload t9
|
.cpload t9
|
||||||
li v0, __NR_inotify_rm_watch
|
li v0, __NR_inotify_rm_watch
|
||||||
@ -22,4 +16,4 @@ inotify_rm_watch:
|
|||||||
j t9
|
j t9
|
||||||
nop
|
nop
|
||||||
.set reorder
|
.set reorder
|
||||||
.end inotify_rm_watch
|
END(inotify_rm_watch)
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user