summaryrefslogtreecommitdiffstats
path: root/libc/arch-arm64
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-05-22 13:40:49 -0700
committerElliott Hughes <enh@google.com>2014-05-22 13:41:36 -0700
commit6e599a904b1f033cfaf79febff686f6296089a7d (patch)
tree9a76b32c875febf25ad2d93d0a4c8e98e8c13ca9 /libc/arch-arm64
parent4f6ed4a10951cbd868fec1b0117a276918c60fa1 (diff)
downloadbionic-6e599a904b1f033cfaf79febff686f6296089a7d.zip
bionic-6e599a904b1f033cfaf79febff686f6296089a7d.tar.gz
bionic-6e599a904b1f033cfaf79febff686f6296089a7d.tar.bz2
Remove the tkill(2) stub.
glibc doesn't have tkill or tgkill and says "use syscall(3) instead". I've left tgkill since it's quite widely used, but there's no reason to have tkill as well. Bug: 11156955 Change-Id: Ifc0af750320086f829bc9914551c172b501f3b60
Diffstat (limited to 'libc/arch-arm64')
-rw-r--r--libc/arch-arm64/syscalls/tkill.S25
1 files changed, 0 insertions, 25 deletions
diff --git a/libc/arch-arm64/syscalls/tkill.S b/libc/arch-arm64/syscalls/tkill.S
deleted file mode 100644
index 307bd149..0000000
--- a/libc/arch-arm64/syscalls/tkill.S
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Generated by gensyscalls.py. Do not edit. */
-
-#include <private/bionic_asm.h>
-
-ENTRY(tkill)
- stp x29, x30, [sp, #-16]!
- .cfi_def_cfa_offset 16
- .cfi_rel_offset x29, 0
- .cfi_rel_offset x30, 8
- mov x29, sp
-
- mov x8, __NR_tkill
- svc #0
-
- ldp x29, x30, [sp], #16
- .cfi_def_cfa_offset 0
- .cfi_restore x29
- .cfi_restore x30
-
- cmn x0, #(MAX_ERRNO + 1)
- cneg x0, x0, hi
- b.hi __set_errno
-
- ret
-END(tkill)