View Single Post
  #9  
Old 01-17-2005, 13:13
just4urim
 
Posts: n/a
Post Kernel Mode Threads

Quote:
Originally Posted by omidgl
Hi.
I know windows driver model (programming).
I know how to suspend user-mode threads.
Can anyone help me about suspending kernel-mode threads.
Thanks
In kernel mode you can create a thread by calling "PsCreateSystemThread" API and then you can suspend it by calling "KeWaitForSingleObject" API .Find more in Microsoft Development Kit (DDK) .
Goodluck
Reply With Quote