Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
signal_handler_fuchsia.cc
Go to the documentation of this file.
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(DART_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) {
16 return 0;
17}
18
19uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) {
21 return 0;
22}
23
24uintptr_t SignalHandler::GetCStackPointer(const mcontext_t& mcontext) {
26 return 0;
27}
28
29uintptr_t SignalHandler::GetDartStackPointer(const mcontext_t& mcontext) {
31 return 0;
32}
33
34uintptr_t SignalHandler::GetLinkRegister(const mcontext_t& mcontext) {
36 return 0;
37}
38
41}
42
45}
46
47} // namespace dart
48
49#endif // defined(DART_HOST_OS_FUCHSIA)
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)