亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C++中如何獲取堆棧跟蹤信息

c++
小樊
89
2024-09-07 06:40:46
欄目: 編程語言

在C++中,獲取堆棧跟蹤信息通常需要使用第三方庫或操作系統特定的API

  1. 使用backtracebacktrace_symbols函數(僅限于GNU/Linux):
#include <execinfo.h>
#include<iostream>

void printStackTrace() {
    const int maxFrames = 64;
    void* frames[maxFrames];
    int numFrames = backtrace(frames, maxFrames);
    char** symbols = backtrace_symbols(frames, numFrames);

    std::cout << "Stack trace:"<< std::endl;
    for (int i = 0; i < numFrames; ++i) {
        std::cout<< symbols[i]<< std::endl;
    }

    free(symbols);
}

int main() {
    // ... your code ...
    printStackTrace();
    return 0;
}
  1. 使用libunwind庫(跨平臺):

首先,安裝libunwind庫:

# Ubuntu/Debian
sudo apt-get install libunwind-dev

# Fedora/RHEL
sudo dnf install libunwind-devel

然后,編寫以下代碼:

#include <unwind.h>
#include <cxxabi.h>
#include<iostream>

struct BacktraceState {
    void** current;
    void** end;
};

static _Unwind_Reason_Code unwindCallback(struct _Unwind_Context* context, void* arg) {
    BacktraceState* state = static_cast<BacktraceState*>(arg);
    uintptr_t pc = _Unwind_GetIP(context);
    if (pc) {
        if (state->current == state->end) {
            return _URC_END_OF_STACK;
        } else {
            *state->current++ = reinterpret_cast<void*>(pc);
        }
    }
    return _URC_NO_REASON;
}

void printStackTrace() {
    const int maxFrames = 64;
    void* frames[maxFrames];
    BacktraceState state = {frames, frames + maxFrames};

    _Unwind_Backtrace(unwindCallback, &state);

    std::cout << "Stack trace:"<< std::endl;
    for (void** frame = frames; frame != state.current; ++frame) {
        std::cout << *frame<< std::endl;
    }
}

int main() {
    // ... your code ...
    printStackTrace();
    return 0;
}

請注意,這些方法可能無法提供完整的堆棧跟蹤信息,特別是在優化過的代碼中。此外,它們可能無法處理某些類型的錯誤,例如堆棧溢出。在生產環境中,你可能需要使用更健壯的工具,如Valgrind或AddressSanitizer。

0
通许县| 新巴尔虎左旗| 城步| 敦化市| 瑞安市| 新野县| 邹平县| 开阳县| 汝南县| 宁城县| 屯门区| 岳池县| 楚雄市| 上栗县| 江华| 安溪县| 罗城| 贺州市| 锡林浩特市| 锦州市| 潜江市| 巫溪县| 会泽县| 汶川县| 金秀| 田东县| 桃江县| 云安县| 康定县| 永春县| 杭锦后旗| 沙湾县| 屏山县| 绥宁县| 偏关县| 山阳县| 光泽县| 中山市| 松桃| 凌海市| 怀化市|