Index: runtime/vm/thread_interrupter_fuchsia.cc |
diff --git a/runtime/vm/thread_interrupter_fuchsia.cc b/runtime/vm/thread_interrupter_fuchsia.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d089211fc63d7e404ce2f470c7e16a19d774a019 |
--- /dev/null |
+++ b/runtime/vm/thread_interrupter_fuchsia.cc |
@@ -0,0 +1,30 @@ |
+// Copyright (c) 2016, 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 "platform/globals.h" |
+#if defined(TARGET_OS_FUCHSIA) |
+ |
+#include "vm/thread_interrupter.h" |
+ |
+#include "platform/assert.h" |
+ |
+namespace dart { |
+ |
+void ThreadInterrupter::InterruptThread(OSThread* thread) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void ThreadInterrupter::InstallSignalHandler() { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void ThreadInterrupter::RemoveSignalHandler() { |
+ UNIMPLEMENTED(); |
+} |
+ |
+} // namespace dart |
+ |
+#endif // defined(TARGET_OS_FUCHSIA) |