1// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#include "vm/globals.h"
6#if defined(HOST_OS_FUCHSIA)
7
8#include "vm/signal_handler.h"
9
10#include "platform/assert.h"
11
12namespace dart {
13
14uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) {
15 UNIMPLEMENTED();
16 return 0;
17}
18
19uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) {
20 UNIMPLEMENTED();
21 return 0;
22}
23
24uintptr_t SignalHandler::GetCStackPointer(const mcontext_t& mcontext) {
25 UNIMPLEMENTED();
26 return 0;
27}
28
29uintptr_t SignalHandler::GetDartStackPointer(const mcontext_t& mcontext) {
30 UNIMPLEMENTED();
31 return 0;
32}
33
34uintptr_t SignalHandler::GetLinkRegister(const mcontext_t& mcontext) {
35 UNIMPLEMENTED();
36 return 0;
37}
38
39void SignalHandler::InstallImpl(SignalAction action) {
40 UNIMPLEMENTED();
41}
42
43void SignalHandler::Remove() {
44 UNIMPLEMENTED();
45}
46
47} // namespace dart
48
49#endif // defined(HOST_OS_FUCHSIA)
50