diff options
| author | Elliott Hughes <enh@google.com> | 2013-10-15 18:01:56 -0700 |
|---|---|---|
| committer | Elliott Hughes <enh@google.com> | 2013-10-15 18:15:19 -0700 |
| commit | 1f5af926fa626734981d6b4dcc0ab54e520032a9 (patch) | |
| tree | ec2188086f5ed45089a46e2e36ecf442f477bb69 /libc/arch-mips/syscalls | |
| parent | c100a10069a16eca57f5f9ab838ff98d7db6eb03 (diff) | |
| download | bionic-1f5af926fa626734981d6b4dcc0ab54e520032a9.zip bionic-1f5af926fa626734981d6b4dcc0ab54e520032a9.tar.gz bionic-1f5af926fa626734981d6b4dcc0ab54e520032a9.tar.bz2 | |
Fix sigsuspend to use rt_sigsuspend on all platforms.
Change-Id: I981c1a66d35480d4457a0a08a1b042dac94daa5b
Diffstat (limited to 'libc/arch-mips/syscalls')
| -rw-r--r-- | libc/arch-mips/syscalls/__rt_sigsuspend.S (renamed from libc/arch-mips/syscalls/__sigsuspend.S) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/arch-mips/syscalls/__sigsuspend.S b/libc/arch-mips/syscalls/__rt_sigsuspend.S index 2b6f6d7..a1a3fce 100644 --- a/libc/arch-mips/syscalls/__sigsuspend.S +++ b/libc/arch-mips/syscalls/__rt_sigsuspend.S @@ -1,14 +1,14 @@ /* autogenerated by gensyscalls.py */ #include <asm/unistd.h> .text - .globl __sigsuspend + .globl __rt_sigsuspend .align 4 - .ent __sigsuspend + .ent __rt_sigsuspend -__sigsuspend: +__rt_sigsuspend: .set noreorder .cpload $t9 - li $v0, __NR_sigsuspend + li $v0, __NR_rt_sigsuspend syscall bnez $a3, 1f move $a0, $v0 @@ -19,4 +19,4 @@ __sigsuspend: j $t9 nop .set reorder - .end __sigsuspend + .end __rt_sigsuspend |
