diff options
author | Elliott Hughes <enh@google.com> | 2014-05-20 21:01:00 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-05-20 21:01:00 -0700 |
commit | 46a55a4478db9e335bdc7f73ee2cf3a66fe673fd (patch) | |
tree | b6e2b8723f2d8330895a5bed48777e804365037d /libc/arch-arm64 | |
parent | 20177b9fea893ab63a49cf574790ea5e5027e50d (diff) | |
download | bionic-46a55a4478db9e335bdc7f73ee2cf3a66fe673fd.zip bionic-46a55a4478db9e335bdc7f73ee2cf3a66fe673fd.tar.gz bionic-46a55a4478db9e335bdc7f73ee2cf3a66fe673fd.tar.bz2 |
Remove __syslog; we have the public klogctl API.
Bug: 11156955
Change-Id: I5c2cc02f39f76dd32984135f5c12c10bf2853796
Diffstat (limited to 'libc/arch-arm64')
-rw-r--r-- | libc/arch-arm64/syscalls/__syslog.S | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libc/arch-arm64/syscalls/__syslog.S b/libc/arch-arm64/syscalls/__syslog.S deleted file mode 100644 index 2e1fb1d..0000000 --- a/libc/arch-arm64/syscalls/__syslog.S +++ /dev/null @@ -1,22 +0,0 @@ -/* Generated by gensyscalls.py. Do not edit. */ - -#include <private/bionic_asm.h> - -ENTRY(__syslog) - stp x29, x30, [sp, #-16]! - mov x29, sp - str x8, [sp, #-16]! - - mov x8, __NR_syslog - svc #0 - - ldr x8, [sp], #16 - ldp x29, x30, [sp], #16 - - cmn x0, #(MAX_ERRNO + 1) - cneg x0, x0, hi - b.hi __set_errno - - ret -END(__syslog) -.hidden __syslog |