dart-sdk/runtime/vm/thread_interrupter_fuchsia.cc
Zachary Anderson a503570e3a Fuchsia: Initial check-in.
Instructions to build and run are in README.fuchsia.

R=asiva@google.com

Review URL: https://codereview.chromium.org/2117593002 .
2016-07-01 12:42:05 -07:00

31 lines
648 B
C++

// 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)