| Index: runtime/bin/dbg_connection_win.h
|
| diff --git a/runtime/bin/dbg_connection_win.h b/runtime/bin/dbg_connection_win.h
|
| index 6b3da1b3430375b0c21fd98783925d1b3d73ceb6..24ac711e1a8999170ba0897eb642cb400603833e 100644
|
| --- a/runtime/bin/dbg_connection_win.h
|
| +++ b/runtime/bin/dbg_connection_win.h
|
| @@ -5,11 +5,14 @@
|
| #ifndef BIN_DBG_CONNECTION_WIN_H_
|
| #define BIN_DBG_CONNECTION_WIN_H_
|
|
|
| -
|
| -
|
| class DebuggerConnectionImpl {
|
| public:
|
| static void StartHandler(int port_number);
|
| + static intptr_t Send(intptr_t socket, const char* buf, int len);
|
| + static intptr_t Receive(intptr_t socket, char* buf, int len);
|
| +
|
| + private:
|
| + static void ThreadEntry(uword args);
|
| };
|
|
|
| #endif // BIN_DBG_CONNECTION_WIN_H_
|
|
|