41070dd15f
In bionic/libc/SYSCALLS.TXT, the prototypes of system call getresuid/getresgid are incorrect. According to man page, they should be: int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); Change-Id: I676098868bb05a9e1fe45419b234cf397626fdad Signed-off-by: Jin Wei <wei.a.jin@intel.com> Signed-off-by: Jack Ren <jack.ren@intel.com> Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
29 lines
546 B
ArmAsm
29 lines
546 B
ArmAsm
/* autogenerated by gensyscalls.py */
|
|
#include <sys/linux-syscalls.h>
|
|
|
|
.text
|
|
.type getresgid, @function
|
|
.globl getresgid
|
|
.align 4
|
|
|
|
getresgid:
|
|
pushl %ebx
|
|
pushl %ecx
|
|
pushl %edx
|
|
mov 16(%esp), %ebx
|
|
mov 20(%esp), %ecx
|
|
mov 24(%esp), %edx
|
|
movl $__NR_getresgid32, %eax
|
|
int $0x80
|
|
cmpl $-129, %eax
|
|
jb 1f
|
|
negl %eax
|
|
pushl %eax
|
|
call __set_errno
|
|
addl $4, %esp
|
|
orl $-1, %eax
|
|
1:
|
|
popl %edx
|
|
popl %ecx
|
|
popl %ebx
|
|
ret
|