| Index: runtime/bin/dbg_connection_android.cc
|
| diff --git a/runtime/bin/dbg_connection_android.cc b/runtime/bin/dbg_connection_android.cc
|
| index d5a8f1d48326e8550a47c0cf73ee6119261fa94f..7fe7e94e0c5cf5f660e0f3d59d6539f4d71fdd58 100644
|
| --- a/runtime/bin/dbg_connection_android.cc
|
| +++ b/runtime/bin/dbg_connection_android.cc
|
| @@ -28,11 +28,11 @@ void DebuggerConnectionImpl::HandleEvent(struct epoll_event* event) {
|
| DebuggerConnectionHandler::AcceptDbgConnection(fd);
|
| // TODO(hausner): add the debugger wire socket fd to the event poll queue
|
| // once we poll the debugger connection.
|
| - } else if (event->data.fd == DebuggerConnectionHandler::debugger_fd_) {
|
| - printf("unexpected: receiving debugger connection event.\n");
|
| + } else if (event->data.fd == wakeup_fds_[0]) {
|
| + // Sync message. Not yet implemented.
|
| UNIMPLEMENTED();
|
| } else {
|
| - // Sync message. Not yet implemented.
|
| + printf("unexpected: receiving debugger connection event.\n");
|
| UNIMPLEMENTED();
|
| }
|
| }
|
|
|