1 | // Copyright (c) 2013, 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 | #include "vm/signal_handler.h" |
7 | #if defined(HOST_OS_WINDOWS) |
8 | |
9 | namespace dart { |
10 | |
11 | uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) { |
12 | UNIMPLEMENTED(); |
13 | return 0; |
14 | } |
15 | |
16 | uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) { |
17 | UNIMPLEMENTED(); |
18 | return 0; |
19 | } |
20 | |
21 | uintptr_t SignalHandler::GetCStackPointer(const mcontext_t& mcontext) { |
22 | UNIMPLEMENTED(); |
23 | return 0; |
24 | } |
25 | |
26 | uintptr_t SignalHandler::GetDartStackPointer(const mcontext_t& mcontext) { |
27 | UNIMPLEMENTED(); |
28 | return 0; |
29 | } |
30 | |
31 | uintptr_t SignalHandler::GetLinkRegister(const mcontext_t& mcontext) { |
32 | UNIMPLEMENTED(); |
33 | return 0; |
34 | } |
35 | |
36 | void SignalHandler::InstallImpl(SignalAction action) { |
37 | UNIMPLEMENTED(); |
38 | } |
39 | |
40 | void SignalHandler::Remove() { |
41 | UNIMPLEMENTED(); |
42 | } |
43 | |
44 | } // namespace dart |
45 | |
46 | #endif // defined(HOST_OS_WINDOWS) |
47 | |