mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
25 lines
833 B
C
25 lines
833 B
C
|
|
/*----------------------------------------------------------------------------*/
|
||
|
|
/* Copyright (c) 2008-2019 FIRST. All Rights Reserved. */
|
||
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
||
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
||
|
|
/* the project. */
|
||
|
|
/*----------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
#ifndef WPIUTIL_WPI_STACKTRACE_H_
|
||
|
|
#define WPIUTIL_WPI_STACKTRACE_H_
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace wpi {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get a stack trace, ignoring the first "offset" symbols.
|
||
|
|
*
|
||
|
|
* @param offset The number of symbols at the top of the stack to ignore
|
||
|
|
*/
|
||
|
|
std::string GetStackTrace(int offset);
|
||
|
|
|
||
|
|
} // namespace wpi
|
||
|
|
|
||
|
|
#endif // WPIUTIL_WPI_STACKTRACE_H_
|