summaryrefslogtreecommitdiffstats
path: root/libc/arch-x86
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-06-13 20:52:56 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-06-12 03:32:07 +0000
commitf87ac523a1aa02490d67330e74180c8ac2d78420 (patch)
treef5014b39b280e71e6012528f998b372e32120d7f /libc/arch-x86
parent1e7ae47d40aad100fa16731418ac8af7b9919da7 (diff)
parent607341e226912d95d03216483bdcef6f8d96f8b4 (diff)
downloadbionic-f87ac523a1aa02490d67330e74180c8ac2d78420.zip
bionic-f87ac523a1aa02490d67330e74180c8ac2d78420.tar.gz
bionic-f87ac523a1aa02490d67330e74180c8ac2d78420.tar.bz2
Merge "Remove ioprio_get(2) and ioprio_set(2) from LP64."
Diffstat (limited to 'libc/arch-x86')
-rw-r--r--libc/arch-x86/syscalls/ioprio_get.S26
-rw-r--r--libc/arch-x86/syscalls/ioprio_set.S31
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)