Computer Science, asked by pankaj35951, 1 year ago

How to debug Linux kernel code?

Answers

Answered by Student213
0

The expectation is that gdb can be used to “break in” to the kernel to inspect memory, variables and look through call stack information similar to the way an application developer would use gdb to debug an application. It is possible to place breakpoints in kernel code and perform some limited execution stepping.

Similar questions