From 19e62325c268a668692e2b65fde2284079f369aa Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 15 Oct 2013 11:23:57 -0700 Subject: Clean up the sigprocmask/pthread_sigmask implementation. Let's have both use rt_sigprocmask, like in glibc. The 64-bit ABIs can share the same code as the 32-bit ABIs. Also, let's test the return side of these calls, not just the setting. Bug: 11069919 Change-Id: I11da99f85b5b481870943c520d05ec929b15eddb --- libc/arch-mips/syscalls/sigprocmask.S | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 libc/arch-mips/syscalls/sigprocmask.S (limited to 'libc/arch-mips/syscalls') diff --git a/libc/arch-mips/syscalls/sigprocmask.S b/libc/arch-mips/syscalls/sigprocmask.S deleted file mode 100644 index a4049bb..0000000 --- a/libc/arch-mips/syscalls/sigprocmask.S +++ /dev/null @@ -1,22 +0,0 @@ -/* autogenerated by gensyscalls.py */ -#include - .text - .globl sigprocmask - .align 4 - .ent sigprocmask - -sigprocmask: - .set noreorder - .cpload $t9 - li $v0, __NR_sigprocmask - syscall - bnez $a3, 1f - move $a0, $v0 - j $ra - nop -1: - la $t9,__set_errno - j $t9 - nop - .set reorder - .end sigprocmask -- cgit v1.1