diff options
| author | Elliott Hughes <enh@google.com> | 2013-10-16 22:27:54 -0700 |
|---|---|---|
| committer | Elliott Hughes <enh@google.com> | 2013-10-17 11:36:55 -0700 |
| commit | c7e9b2331771e5e87c34a8ee3dc6cc41d35b02fe (patch) | |
| tree | c04816a58f739d9f76c12a0f5acf1676eed6c89c /libc/arch-mips/syscalls | |
| parent | f89f1eaa6071111c2ef584e97efb23f1b5dbdd2d (diff) | |
| download | bionic-c7e9b2331771e5e87c34a8ee3dc6cc41d35b02fe.zip bionic-c7e9b2331771e5e87c34a8ee3dc6cc41d35b02fe.tar.gz bionic-c7e9b2331771e5e87c34a8ee3dc6cc41d35b02fe.tar.bz2 | |
Fix sigaction(3) for 64-bit.
Also clean up <signal.h> and revert the hacks that were necessary
for 64-bit in linker/debugger.cpp until now.
Change-Id: I3b0554ca8a49ee1c97cda086ce2c1954ebc11892
Diffstat (limited to 'libc/arch-mips/syscalls')
| -rw-r--r-- | libc/arch-mips/syscalls/__sigaction.S (renamed from libc/arch-mips/syscalls/sigaction.S) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/arch-mips/syscalls/sigaction.S b/libc/arch-mips/syscalls/__sigaction.S index d1808c6..cc53ab4 100644 --- a/libc/arch-mips/syscalls/sigaction.S +++ b/libc/arch-mips/syscalls/__sigaction.S @@ -2,11 +2,11 @@ #include <asm/unistd.h> .text - .globl sigaction + .globl __sigaction .align 4 - .ent sigaction + .ent __sigaction -sigaction: +__sigaction: .set noreorder .cpload $t9 li $v0, __NR_sigaction @@ -20,4 +20,4 @@ sigaction: j $t9 nop .set reorder - .end sigaction + .end __sigaction |
