512bc52326
These calls were not going through the PLT like they should have been. Bug: 16853291 Change-Id: Id70488b077256a70137c4417f21be2c2d1d4341c
17 lines
306 B
ArmAsm
17 lines
306 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
ENTRY(geteuid)
|
|
movl $__NR_geteuid32, %eax
|
|
int $0x80
|
|
cmpl $-MAX_ERRNO, %eax
|
|
jb 1f
|
|
negl %eax
|
|
pushl %eax
|
|
call PIC_PLT(__set_errno)
|
|
addl $4, %esp
|
|
1:
|
|
ret
|
|
END(geteuid)
|