diff options
author | Yabin Cui <yabinc@google.com> | 2014-12-01 17:41:04 -0800 |
---|---|---|
committer | Yabin Cui <yabinc@google.com> | 2014-12-08 21:52:43 -0800 |
commit | 634816055f51c536d24dea30dfe930b7fe2fa603 (patch) | |
tree | 5d3739b116df16774776010538254c10007c0a76 /libc/arch-x86_64 | |
parent | f64c43ba6c9244c50e904961dc432f04b1dfcfd9 (diff) | |
download | bionic-634816055f51c536d24dea30dfe930b7fe2fa603.zip bionic-634816055f51c536d24dea30dfe930b7fe2fa603.tar.gz bionic-634816055f51c536d24dea30dfe930b7fe2fa603.tar.bz2 |
support _POSIX_REALTIME_SIGNALS
Bug: 18489947
Change-Id: I2e834d68bc10ca5fc7ebde047b517a3074179475
Diffstat (limited to 'libc/arch-x86_64')
-rw-r--r-- | libc/arch-x86_64/syscalls/__rt_sigqueueinfo.S | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libc/arch-x86_64/syscalls/__rt_sigqueueinfo.S b/libc/arch-x86_64/syscalls/__rt_sigqueueinfo.S new file mode 100644 index 0000000..52b6863 --- /dev/null +++ b/libc/arch-x86_64/syscalls/__rt_sigqueueinfo.S @@ -0,0 +1,16 @@ +/* Generated by gensyscalls.py. Do not edit. */ + +#include <private/bionic_asm.h> + +ENTRY(__rt_sigqueueinfo) + movl $__NR_rt_sigqueueinfo, %eax + syscall + cmpq $-MAX_ERRNO, %rax + jb 1f + negl %eax + movl %eax, %edi + call __set_errno_internal +1: + ret +END(__rt_sigqueueinfo) +.hidden __rt_sigqueueinfo |