Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
signal_handler_win.cc
Go to the documentation of this file.
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(DART_HOST_OS_WINDOWS)
8
9namespace dart {
10
11uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) {
13 return 0;
14}
15
16uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) {
18 return 0;
19}
20
21uintptr_t SignalHandler::GetCStackPointer(const mcontext_t& mcontext) {
23 return 0;
24}
25
26uintptr_t SignalHandler::GetDartStackPointer(const mcontext_t& mcontext) {
28 return 0;
29}
30
31uintptr_t SignalHandler::GetLinkRegister(const mcontext_t& mcontext) {
33 return 0;
34}
35
38}
39
42}
43
44} // namespace dart
45
46#endif // defined(DART_HOST_OS_WINDOWS)
static void Remove()
static uintptr_t GetDartStackPointer(const mcontext_t &mcontext)
static uintptr_t GetCStackPointer(const mcontext_t &mcontext)
static uintptr_t GetFramePointer(const mcontext_t &mcontext)
static uintptr_t GetProgramCounter(const mcontext_t &mcontext)
static void Install(SignalAction action)
static uintptr_t GetLinkRegister(const mcontext_t &mcontext)
#define UNIMPLEMENTED
void(* SignalAction)(int signal, siginfo_t *info, void *context)