summaryrefslogtreecommitdiffstats
path: root/libc/arch-mips/syscalls
diff options
context:
space:
mode:
authorSreeram Ramachandran <sreeram@google.com>2014-05-12 11:19:16 -0700
committerSreeram Ramachandran <sreeram@google.com>2014-05-13 11:30:03 -0700
commitceb5bd787c8ce281e5f4343c5d4f77b41c3e2919 (patch)
tree4b91184c22597e1757ba036d30e09f5c5e586a74 /libc/arch-mips/syscalls
parent0ccef7ec5294b34902e07c26db55891d3eddb2be (diff)
downloadbionic-ceb5bd787c8ce281e5f4343c5d4f77b41c3e2919.zip
bionic-ceb5bd787c8ce281e5f4343c5d4f77b41c3e2919.tar.gz
bionic-ceb5bd787c8ce281e5f4343c5d4f77b41c3e2919.tar.bz2
Introduce netd_client, a dynamic library that talks to netd.
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
Diffstat (limited to 'libc/arch-mips/syscalls')
-rw-r--r--libc/arch-mips/syscalls/__connect.S (renamed from libc/arch-mips/syscalls/connect.S)4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/arch-mips/syscalls/connect.S b/libc/arch-mips/syscalls/__connect.S
index 6f10652..f7ac916 100644
--- a/libc/arch-mips/syscalls/connect.S
+++ b/libc/arch-mips/syscalls/__connect.S
@@ -2,7 +2,7 @@
#include <private/bionic_asm.h>
-ENTRY(connect)
+ENTRY(__connect)
.set noreorder
.cpload t9
li v0, __NR_connect
@@ -16,4 +16,4 @@ ENTRY(connect)
j t9
nop
.set reorder
-END(connect)
+END(__connect)