tonykang22 / study

0 stars 0 forks source link

[리눅스 개발환경] 03. GDB 디버깅 #73

Open tonykang22 opened 2 years ago

tonykang22 commented 2 years ago

03. GDB 디버깅

GDB 디버깅 개요



특징



참고 사항



GDB로 할 수 있는 일



GDB 기본 사용법

image



코어 덤프



GDB 명령

image



GDB 실습 1

image



image



image



GDB 실습 2

// func1.c
#include <stdio.h>
void func1()
{
printf("func1 called\n");
}
#include <stdio.h>
void func2()
{
printf("func2 called\n");
}



image



image



image



image



image



image



image



image