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