diff options
author | Dan Albert <danalbert@google.com> | 2014-06-12 18:02:48 -0700 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-06-12 18:10:13 -0700 |
commit | 607341e226912d95d03216483bdcef6f8d96f8b4 (patch) | |
tree | 3de470c4d40cfab0d173b633929f7b14ddbe8ff9 /libc/arch-x86 | |
parent | 346fa721ca20e481a624930425d823d452e11dfe (diff) | |
download | bionic-607341e226912d95d03216483bdcef6f8d96f8b4.zip bionic-607341e226912d95d03216483bdcef6f8d96f8b4.tar.gz bionic-607341e226912d95d03216483bdcef6f8d96f8b4.tar.bz2 |
Remove ioprio_get(2) and ioprio_set(2) from LP64.
Bug: 11156955
Change-Id: I07b596d85e4bd6347d488d1a92c8d0a00b5ef3b3
Diffstat (limited to 'libc/arch-x86')
-rw-r--r-- | libc/arch-x86/syscalls/ioprio_get.S | 26 | ||||
-rw-r--r-- | libc/arch-x86/syscalls/ioprio_set.S | 31 |
2 files changed, 0 insertions, 57 deletions
diff --git a/libc/arch-x86/syscalls/ioprio_get.S b/libc/arch-x86/syscalls/ioprio_get.S deleted file mode 100644 index 491c2f3..0000000 --- a/libc/arch-x86/syscalls/ioprio_get.S +++ /dev/null @@ -1,26 +0,0 @@ -/* Generated by gensyscalls.py. Do not edit. */ - -#include <private/bionic_asm.h> - -ENTRY(ioprio_get) - pushl %ebx - .cfi_def_cfa_offset 8 - .cfi_rel_offset ebx, 0 - pushl %ecx - .cfi_adjust_cfa_offset 4 - .cfi_rel_offset ecx, 0 - mov 12(%esp), %ebx - mov 16(%esp), %ecx - movl $__NR_ioprio_get, %eax - int $0x80 - cmpl $-MAX_ERRNO, %eax - jb 1f - negl %eax - pushl %eax - call __set_errno - addl $4, %esp -1: - popl %ecx - popl %ebx - ret -END(ioprio_get) diff --git a/libc/arch-x86/syscalls/ioprio_set.S b/libc/arch-x86/syscalls/ioprio_set.S deleted file mode 100644 index e80602c..0000000 --- a/libc/arch-x86/syscalls/ioprio_set.S +++ /dev/null @@ -1,31 +0,0 @@ -/* Generated by gensyscalls.py. Do not edit. */ - -#include <private/bionic_asm.h> - -ENTRY(ioprio_set) - pushl %ebx - .cfi_def_cfa_offset 8 - .cfi_rel_offset ebx, 0 - pushl %ecx - .cfi_adjust_cfa_offset 4 - .cfi_rel_offset ecx, 0 - pushl %edx - .cfi_adjust_cfa_offset 4 - .cfi_rel_offset edx, 0 - mov 16(%esp), %ebx - mov 20(%esp), %ecx - mov 24(%esp), %edx - movl $__NR_ioprio_set, %eax - int $0x80 - cmpl $-MAX_ERRNO, %eax - jb 1f - negl %eax - pushl %eax - call __set_errno - addl $4, %esp -1: - popl %edx - popl %ecx - popl %ebx - ret -END(ioprio_set) |