3726f9c38b
Bug: 16853291 This reverts commit 512bc5232689bec9c763c8247b59de970096ff87.
17 lines
295 B
ArmAsm
17 lines
295 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
ENTRY(getppid)
|
|
movl $__NR_getppid, %eax
|
|
int $0x80
|
|
cmpl $-MAX_ERRNO, %eax
|
|
jb 1f
|
|
negl %eax
|
|
pushl %eax
|
|
call __set_errno
|
|
addl $4, %esp
|
|
1:
|
|
ret
|
|
END(getppid)
|