Index: runtime/vm/signal_handler_win.cc |
diff --git a/runtime/vm/signal_handler_win.cc b/runtime/vm/signal_handler_win.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8a4b86c19f52a37be600505a80e915ca04a8a4c9 |
--- /dev/null |
+++ b/runtime/vm/signal_handler_win.cc |
@@ -0,0 +1,43 @@ |
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+#include "vm/globals.h" |
+#include "vm/signal_handler.h" |
+#if defined(TARGET_OS_WINDOWS) |
+ |
+namespace dart { |
+ |
+uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) { |
+ UNIMPLEMENTED(); |
+ return 0; |
+} |
+ |
+ |
+uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) { |
+ UNIMPLEMENTED(); |
+ return 0; |
+} |
+ |
+ |
+uintptr_t SignalHandler::GetStackPointer(const mcontext_t& mcontext) { |
+ UNIMPLEMENTED(); |
+ return 0; |
+} |
+ |
+ |
+void SignalHandler::Install(SignalAction action) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+ScopedSignalBlocker::ScopedSignalBlocker() { |
+} |
+ |
+ |
+ScopedSignalBlocker::~ScopedSignalBlocker() { |
+} |
+ |
+} // namespace dart |
+ |
+#endif // defined(TARGET_OS_WINDOWS) |