summaryrefslogtreecommitdiffstats
path: root/libc/arch-arm/syscalls/getppid.S
blob: bcc13a8a63e07af1983ae0a62624f2ded9ec96b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Generated by gensyscalls.py. Do not edit. */

#include <private/bionic_asm.h>

    .hidden __set_errno

ENTRY(getppid)
    mov     ip, r7
    ldr     r7, =__NR_getppid
    swi     #0
    mov     r7, ip
    cmn     r0, #(MAX_ERRNO + 1)
    bxls    lr
    neg     r0, r0
    b       __set_errno
END(getppid)