summaryrefslogtreecommitdiffstats
path: root/libc/arch-mips/syscalls
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-10-16 22:27:54 -0700
committerElliott Hughes <enh@google.com>2013-10-17 11:36:55 -0700
commitc7e9b2331771e5e87c34a8ee3dc6cc41d35b02fe (patch)
treec04816a58f739d9f76c12a0f5acf1676eed6c89c /libc/arch-mips/syscalls
parentf89f1eaa6071111c2ef584e97efb23f1b5dbdd2d (diff)
downloadbionic-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