dbf2e19281
Bothbe91052932
ande2faf07d65
were submitted about two days ago. The former changed how the syscalls stubs were generated, but the latter was submitted using the old stub format. Use the new stub format for setdomainname.S Change-Id: I578acd7053f57a275f6831dd2404ef04826c578e
34 lines
681 B
ArmAsm
34 lines
681 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
ENTRY(setdomainname)
|
|
pushl %ebx
|
|
.cfi_def_cfa_offset 8
|
|
.cfi_rel_offset ebx, 0
|
|
pushl %ecx
|
|
.cfi_adjust_cfa_offset 4
|
|
.cfi_rel_offset ecx, 0
|
|
|
|
call __kernel_syscall
|
|
pushl %eax
|
|
.cfi_adjust_cfa_offset 4
|
|
.cfi_rel_offset eax, 0
|
|
|
|
mov 16(%esp), %ebx
|
|
mov 20(%esp), %ecx
|
|
movl $__NR_setdomainname, %eax
|
|
call *(%esp)
|
|
addl $4, %esp
|
|
|
|
cmpl $-MAX_ERRNO, %eax
|
|
jb 1f
|
|
negl %eax
|
|
pushl %eax
|
|
call __set_errno_internal
|
|
addl $4, %esp
|
|
1:
|
|
popl %ecx
|
|
popl %ebx
|
|
ret
|
|
END(setdomainname)
|