| Index: runtime/bin/socket_android.cc
|
| diff --git a/runtime/bin/socket_android.cc b/runtime/bin/socket_android.cc
|
| index 96175cff8df7ff16675c4bacbeedbbe4f67620ef..365e548ddc3ca5d0006cf09a160db086d3a416e5 100644
|
| --- a/runtime/bin/socket_android.cc
|
| +++ b/runtime/bin/socket_android.cc
|
| @@ -380,6 +380,12 @@ intptr_t ServerSocket::CreateBindListen(RawAddr addr,
|
| }
|
|
|
|
|
| +bool ServerSocket::StartAccept(intptr_t fd) {
|
| + USE(fd);
|
| + return true;
|
| +}
|
| +
|
| +
|
| static bool IsTemporaryAcceptError(int error) {
|
| // On Android a number of protocol errors should be treated as EAGAIN.
|
| // These are the ones for TCP/IP.
|
|
|