我已经尝试了 StackOverflow 和其他网站的以下链接,[我尝试过,但它没有帮助我,所以我无法避免重复]
Windows 上的 StackWalk64 - 获取符号名称
你如何让 StackWalk64() 在 x64 上成功运行?
http://www.codeproject.com/KB/threads/StackWalker.aspx
http://jpassing.com/2008/03/12/walking-the-stack-of-the-current-thread/
但是没有一个代码对我有用。我是 Windows C++ 环境的新手,我无法让上述任何代码工作。
我正在寻找一种调用堆栈格式,例如
FUNCTION_NAME_DEPTH_1 : _LINE_NUM__
FUNCTION_NAME_DEPTH_1 : _LINE_NUM__
FUNCTION_NAME_DEPTH_1 : _LINE_NUM__ ...
只是函数名和行号。
我的环境:
Visual Studio 2010
SDK:v7.1
Windows 7 Pro SP1
如果有人发布一个头文件会很简单,[似乎很少有可用的,但不起作用]我们可以将其包含在我们的 cpp 文件中,并使用像“PrintFunctionCallStack();”这样的调用来打印调用堆栈。. 顺便说一句,在 Linux/Mac 中,这要容易得多,我能够从回溯中获取调用堆栈,而且非常简单,我自己在几分钟内就完成了。在 Windows 中,我过去两天一直在尝试,但一点也不奇怪。
Linux/Mac 堆栈跟踪代码,我还没有解开符号名称。
#ifndef _STACKTRACE_H_
#define _STACKTRACE_H_
#include <stdio.h>
#include <stdlib.h>
#include <execinfo.h>
#include <cxxabi.h>
#include <iostream>
static inline void PrintStackTrace()
{
cout<<"##############################################\n";
unsigned int maxStackCount = 63;
void* addressList[maxStackCount+1];
int addrLen = backtrace(addressList, sizeof(addressList) / sizeof(void*));
if (addrLen == 0) {
cout<<"Empty Stack, Probably Corrupted it seems ###\n";
return;
}
char** symbolList = backtrace_symbols(addressList, addrLen);
for (int i = 1; i < addrLen; i++) // Skipped First, 'i' begins with '1'
{
cout<<"###: "<<symbolList[i]<<":###\n";
}
free(symbolList);
cout<<"##############################################\n";
}
#endif