| Index: runtime/bin/process_win.cc
|
| diff --git a/runtime/bin/process_win.cc b/runtime/bin/process_win.cc
|
| index 02bea4bb5115d41303ff72718d5cbb21e2174993..56cd57d6b164b57539d914f76217e742a804f343 100644
|
| --- a/runtime/bin/process_win.cc
|
| +++ b/runtime/bin/process_win.cc
|
| @@ -959,7 +959,7 @@ BOOL WINAPI SignalHandler(DWORD signal) {
|
| while (handler != NULL) {
|
| if (handler->signal() == signal) {
|
| int value = 0;
|
| - Socket::Write(handler->fd(), &value, 1);
|
| + SocketBase::Write(handler->fd(), &value, 1);
|
| handled = true;
|
| }
|
| handler = handler->next();
|
|
|