Changes between Version 2 and Version 3 of DebuggingAndSuch
- Timestamp:
- May 22, 2007, 11:40:44 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DebuggingAndSuch
v2 v3 10 10 }}} 11 11 12 It appears that the logs are clear sby the copy.12 It appears that the logs are cleared by the copy. 13 13 14 14 … … 21 21 == The Kernel Debugger == 22 22 23 There are times when you just has to watch the code execute to understand the issue. The kernel debugger can help here. You and second system and either a serial port to or a supported NIC to use the debugger. You can not use a NIC for debugging driver initialization and such. Not enough tothe OS is loaded. However, NIC debugging can make working other areas of driver operation go faster.23 There are times when you just has to watch the code execute to understand the issue. The kernel debugger can help here. You need a second system and either a serial port to or a supported NIC to use the debugger. You can not use a NIC for debugging driver initialization and such. Not enough of the OS is loaded. However, NIC debugging can make working other areas of driver operation go faster. 24 24 25 The kernel debugger comes in two flavors. There's the traditional command line debugger . There's the ICAT source level GUI debugger. Which is best depends on which part of the driver code you are working on. The source level debugging is handy, but it can be slow over a serial port.25 The kernel debugger comes in two flavors. There's the traditional command line debugger and there's the ICAT source level GUI debugger. Which is best depends on which part of the driver code you are working on. The source level debugging is handy, but it can be slow over a serial port. 26 26 27 27 More to come...