| Index: runtime/bin/process_win.cc
|
| diff --git a/runtime/bin/process_win.cc b/runtime/bin/process_win.cc
|
| index 0870983a91e9390499eab946e78385e8beb4527d..02bea4bb5115d41303ff72718d5cbb21e2174993 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;
|
| - BaseSocket::Write(handler->fd(), &value, 1);
|
| + Socket::Write(handler->fd(), &value, 1);
|
| handled = true;
|
| }
|
| handler = handler->next();
|
|
|