Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

gcc C++ 프로그램이 충돌할 때 스택 추적을 자동으로 생성하는 방법은 무엇입니까?

<시간/>

Linux의 경우 gcc를 사용하여 C/C++ 코드를 컴파일할 수 있습니다. 이 컴파일러는 glibc 라이브러리를 사용합니다. backtrace() 함수를 사용하여 오류를 추적할 수 있습니다. 이 함수는 execinfo.h 헤더 파일 안에 있습니다. 이 예에서는 스택 추적 기능을 사용하여 Segmentation 오류 오류를 표시합니다.

예시

#include <iostream>
#include <execinfo.h>
#include <signal.h>
#include <cstdlib>
#include <unistd.h>
using namespace std;
void error_handler(int sig) {
   void *array[10];
   size_t size;
   size = backtrace(array, 10); //get the void pointers for all of the entries
   cout << "Error: signal "<< sig <<":\n"; //display error signal
   backtrace_symbols_fd(array, size, STDERR_FILENO);
   exit(1);
}
void invalid_index() {
   int *ptr = (int*) - 1;
   cout << *ptr << endl; // segmentation error
}
void func1() {
   invalid_index();
}
void func2() {
   func1();
}
int main(int argc, char **argv) {
   signal(SIGSEGV, error_handler); // use handler to print the errors
   func2(); // this will call all other function to generate error
}

출력

Error: signal 11:
./a.out(+0x825)[0x5579a31d7825]
/lib/x86_64-linux-gnu/libc.so.6(+0x3ef20)[0x7f7689009f20]
./a.out(+0x880)[0x5579a31d7880]
./a.out(+0x8a1)[0x5579a31d78a1]
./a.out(+0x8ad)[0x5579a31d78ad]
./a.out(+0x8d5)[0x5579a31d78d5]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xe7)[0x7f7688fecb97]
./a.out(+0x71a)[0x5579a31d771a]