blob: 04471b2c955e4d3d1f782f4038d3b417b6a9dce4 [file] [log] [blame]
// Copyright 2021 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_LIB_UNWINDER_UNWIND_LOCAL_H_
#define SRC_LIB_UNWINDER_UNWIND_LOCAL_H_
#include "src/lib/unwinder/unwind.h"
namespace unwinder {
// Unwind from the current location. The first frame in the returned value is the return address
// of this function call. This function is not available on macOS.
std::vector<Frame> UnwindLocal();
} // namespace unwinder
#endif // SRC_LIB_UNWINDER_UNWIND_LOCAL_H_