ceb5bd787c
The library exists outside bionic. It is dynamically loaded, to replace selected standard socket syscalls with versions that talk to netd. Change connect() to use the library if available. (cherry picked from commit 3a6b627a14df8111b03e452f2df4b5f4938e0e49) Change-Id: Ib6198e19dbc306521a26fcecfdf6e8424d163fc9
19 lines
292 B
ArmAsm
19 lines
292 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
ENTRY(__connect)
|
|
.set noreorder
|
|
.cpload t9
|
|
li v0, __NR_connect
|
|
syscall
|
|
bnez a3, 1f
|
|
move a0, v0
|
|
j ra
|
|
nop
|
|
1:
|
|
la t9,__set_errno
|
|
j t9
|
|
nop
|
|
.set reorder
|
|
END(__connect)
|