2009-06-10 38 views
5

我需要在某些点获取C应用程序的堆栈信息。我已阅读文档并搜索了网络,但仍无法弄清楚我能做到这一点。你能指出一个简单的过程解释吗?或者,甚至更好的是一个堆栈展开的例子。我需要它用于HP-UX(Itanium)和Linux。在HP-UX和Linux上展开堆栈

回答

4

退房LINUX/stacktrace.h

这里是一个API参考:

http://www.cs.cmu.edu/afs/cs/Web/People/tekkotsu/dox/StackTrace_8h.html

应该在所有的Linux内核上工作

下面是用C从另一例子

http://www.linuxjournal.com/article/6391

#include <stdio.h> 
#include <signal.h> 
#include <execinfo.h> 

void show_stackframe() { 
    void *trace[16]; 
    char **messages = (char **)NULL; 
    int i, trace_size = 0; 

    trace_size = backtrace(trace, 16); 
    messages = backtrace_symbols(trace, trace_size); 
    printf("[bt] Execution path:\n"); 
    for (i=0; i<trace_size; ++i) 
    printf("[bt] %s\n", messages[i]); 
} 


int func_low(int p1, int p2) { 

    p1 = p1 - p2; 
    show_stackframe(); 

    return 2*p1; 
} 

int func_high(int p1, int p2) { 

    p1 = p1 + p2; 
    show_stackframe(); 

    return 2*p1; 
} 


int test(int p1) { 
    int res; 

    if (p1<10) 
    res = 5+func_low(p1, 2*p1); 
    else 
    res = 5+func_high(p1, 2*p1); 
    return res; 
} 



int main() { 

    printf("First call: %d\n\n", test(27)); 
    printf("Second call: %d\n", test(4)); 

} 
+0

我不知道API存在;多么有用! – Jamie 2009-06-10 16:12:23

3

你想看看libunwind - 这是平仓安腾堆栈跟踪惠普最初开发一个跨平台的库(这是特别复杂的);但随后已扩展到许多其他平台;包括x86-Linux和Itanium-HPUX。

从libunwind(3)手册页;这里是一个使用libunwind写一个典型的 '秀回溯' 功能的例子:对于HPUX安腾

#define UNW_LOCAL_ONLY 
#include <libunwind.h> 

void show_backtrace (void) { 
    unw_cursor_t cursor; unw_context_t uc; 
    unw_word_t ip, sp; 

    unw_getcontext(&uc); 
    unw_init_local(&cursor, &uc); 
    while (unw_step(&cursor) > 0) { 
    unw_get_reg(&cursor, UNW_REG_IP, &ip); 
    unw_get_reg(&cursor, UNW_REG_SP, &sp); 
    printf ("ip = %lx, sp = %lx\n", (long) ip, (long) sp); 
    } 
}