Chromium Code Reviews| Index: src/platform-win32.cc |
| diff --git a/src/platform-win32.cc b/src/platform-win32.cc |
| index 7a90920a88b1809748eef69497c8434f80a0b402..073b21a011aae732b7db5dc15ca3b18c85e3858b 100644 |
| --- a/src/platform-win32.cc |
| +++ b/src/platform-win32.cc |
| @@ -872,8 +872,10 @@ void OS::Sleep(int milliseconds) { |
| void OS::Abort() { |
| if (IsDebuggerPresent() || FLAG_break_on_abort) { |
| DebugBreak(); |
| + } else { |
| + // Make the MSVCRT do a silent abort. |
| + raise(SIGABRT); |
| } |
| - V8_IMMEDIATE_CRASH(); |
| } |