munlock.S revision 512bc5232689bec9c763c8247b59de970096ff87
1/* Generated by gensyscalls.py. Do not edit. */
2
3#include <private/bionic_asm.h>
4
5ENTRY(munlock)
6    movl    $__NR_munlock, %eax
7    syscall
8    cmpq    $-MAX_ERRNO, %rax
9    jb      1f
10    negl    %eax
11    movl    %eax, %edi
12    call    PIC_PLT(__set_errno)
131:
14    ret
15END(munlock)
16