Core Dump - CI/CD用語集の定義
コアダンプは、プロセスがクラッシュした瞬間(例えば SIGSEGV 時)のメモリ、レジスタ、スタックを捉えたファイルです。debug symbols と組み合わせることで、debugger がプログラムがなぜ終了したかを正確に再構築できます。
関連ガイド
Stack Trace - CI/CD Glossary DefinitionA stack trace is the ordered list of function calls active when an error occurred, showing the path the progr…
Debug Symbols - CI/CD Glossary DefinitionDebug symbols map machine code back to source lines, variables, and types, letting debuggers and crash report…
Heap Profiling - CI/CD Glossary DefinitionHeap profiling samples where a program allocates memory and what stays live, helping find leaks and bloat tha…