bionic/libc/arch-x86_64/syscalls/inotify_init1.S

17 lines
314 B
ArmAsm
Raw Normal View History

/* Generated by gensyscalls.py. Do not edit. */
#include <private/bionic_asm.h>
ENTRY(inotify_init1)
movl $__NR_inotify_init1, %eax
syscall
cmpq $-MAX_ERRNO, %rax
jb 1f
negl %eax
movl %eax, %edi
call __set_errno
orq $-1, %rax
1:
ret
END(inotify_init1)