summaryrefslogtreecommitdiffstats
path: root/libc/arch-x86
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-05-20 21:01:00 -0700
committerElliott Hughes <enh@google.com>2014-05-20 21:01:00 -0700
commit46a55a4478db9e335bdc7f73ee2cf3a66fe673fd (patch)
treeb6e2b8723f2d8330895a5bed48777e804365037d /libc/arch-x86
parent20177b9fea893ab63a49cf574790ea5e5027e50d (diff)
downloadbionic-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-x86')
-rw-r--r--libc/arch-x86/syscalls/__syslog.S30
1 files changed, 0 insertions, 30 deletions
diff --git a/libc/arch-x86/syscalls/__syslog.S b/libc/arch-x86/syscalls/__syslog.S
deleted file mode 100644
index 1da01be..0000000
--- a/libc/arch-x86/syscalls/__syslog.S
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Generated by gensyscalls.py. Do not edit. */
-
-#include <private/bionic_asm.h>
-
-ENTRY(__syslog)
- pushl %ebx
- pushl %ecx
- pushl %edx
- .cfi_def_cfa_offset 12
- .cfi_rel_offset ebx, 0
- .cfi_rel_offset ecx, 4
- .cfi_rel_offset edx, 8
- mov 16(%esp), %ebx
- mov 20(%esp), %ecx
- mov 24(%esp), %edx
- movl $__NR_syslog, %eax
- int $0x80
- cmpl $-MAX_ERRNO, %eax
- jb 1f
- negl %eax
- pushl %eax
- call __set_errno
- addl $4, %esp
- orl $-1, %eax
-1:
- popl %edx
- popl %ecx
- popl %ebx
- ret
-END(__syslog)