blob: db6d8d9c9a164c3962659ed031d10f9c4e37ded4 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVELOPER_DEBUG_DEBUG_AGENT_UNWIND_H_
#define SRC_DEVELOPER_DEBUG_DEBUG_AGENT_UNWIND_H_
#include <vector>
#include "src/developer/debug/ipc/records.h"
namespace debug_agent {
class GeneralRegisters;
class ModuleList;
class ProcessHandle;
class ThreadHandle;
zx_status_t UnwindStack(const ProcessHandle& process, const ModuleList& modules,
const ThreadHandle& thread, const GeneralRegisters& regs, size_t max_depth,
std::vector<debug_ipc::StackFrame>* stack);
} // namespace debug_agent
#endif // SRC_DEVELOPER_DEBUG_DEBUG_AGENT_UNWIND_H_