0

how can I make sure my program is working successfully in kernel mode or level in driver programming?

And how I can use this program if there is any program need to use?

michaelmichael
  • 13,755
  • 7
  • 54
  • 60
user663161
  • 19
  • 1
  • 3

1 Answers1

2

Analyze it with a kernel debugger. Search for WinDbg (on Windows) or KDB (on Linux).

Thiago Cardoso
  • 725
  • 1
  • 5
  • 19
  • 3
    Actually, the Windows kernel debugger is also called `kdb`. `windbg` is the usermode debugger. – JSBձոգչ Apr 08 '11 at 19:58
  • Yeah, that's right, but actually WinDbg is a front-end to KDB (kernel mode) or CDB (user mode). It's the swiss knife for windows debugging :) – Thiago Cardoso Apr 08 '11 at 20:25