Chapter 4. Debugging Techniques
Kernel
programming brings its own, unique debugging challenges. Kernel code
cannot be easily executed under a debugger, nor can it be easily
traced, because it is a set of functionalities not related to a
specific process. Kernel code errors can also be exceedingly hard to
reproduce and can bring down the entire system with them, thus
destroying much of the evidence that could be used to track them
down.
This chapter introduces techniques you can use to monitor kernel code
and trace errors under such trying circumstances.
|