函数调用C ++中的堆栈

我试过以下的链接,从StackOverflow和其他网站,[我试过了,但它没有帮助我,所以我不能避免重复]

Windows上的StackWalk64 – 获取符号名称

如何使StackWalk64()在x64上成功工作?

http://www.codeproject.com/KB/threads/StackWalker.aspx

Walking the stack of the current thread

如何logging堆栈框架与Windows x64 …

但是没有一个代码为我工作。我是新的Windows C + +环境,我不能得到任何上述代码工作。

我正在寻找一个调用堆栈格式,
FUNCTION_NAME_DEPTH_1:_LINE_NUM__
FUNCTION_NAME_DEPTH_1:_LINE_NUM__
FUNCTION_NAME_DEPTH_1:_LINE_NUM__ …

只是function名称和行​​号。

我的环境:
Visual Studio 2010
SDK:v7.1
Windows 7专业版SP1

如果有人发布了一个头文件(好像没有什么可用的,但没有工作),那么我们可以在我们的cpp文件中包含这个头文件,然后用一个像PrintFunctionCallStack()这样的调用来打印调用堆栈。 。 顺便说一句,在Linux / Mac中,这样做更容易一些,我能够从回溯中获得调用堆栈,并且非常简单,只需几分钟就可以完成。 在Windows中,我已经尝试了两天,但一点也不奇怪。

Linux / Mac Stack Trace Code,我还没有去掉符号名称。

#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 

如果您的环境是Visual Studio,则可以插入一个Tracepoint并输入

 $CALLSTACK 

在其编辑框中,勾选后打印一条信息。

为此,请右键单击所需的行,然后选择断点>插入断点(或者,也可以在所需的编辑器行左侧插入一个断点,然后选择何时点击)。

然后,您将在“输出”窗口中看到详细的报告,具有文件名,行号和函数名称。 它使我成功地发现了一些内存泄漏。