From a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 21 Oct 2008 07:00:00 -0700 Subject: Initial Contribution --- libc/arch-x86/syscalls/inotify_init.S | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libc/arch-x86/syscalls/inotify_init.S (limited to 'libc/arch-x86/syscalls/inotify_init.S') diff --git a/libc/arch-x86/syscalls/inotify_init.S b/libc/arch-x86/syscalls/inotify_init.S new file mode 100644 index 0000000..2d186c4 --- /dev/null +++ b/libc/arch-x86/syscalls/inotify_init.S @@ -0,0 +1,23 @@ +/* autogenerated by gensyscalls.py */ +#include + + .text + .type inotify_init, @function + .globl inotify_init + .align 4 + +inotify_init: + pushl %ebx + mov 8(%esp), %ebx + movl $__NR_inotify_init, %eax + int $0x80 + cmpl $-129, %eax + jb 1f + negl %eax + pushl %eax + call __set_errno + addl $4, %esp + orl $-1, %eax +1: + popl %ebx + ret -- cgit v1.1