Reply To: IOCTL_NDISRD_SET_EVENT and Win32 events

Home Forums Discussions Support IOCTL_NDISRD_SET_EVENT and Win32 events Reply To: IOCTL_NDISRD_SET_EVENT and Win32 events

#5552
Vadim Smirnov
Keymaster

    How to wait for an event in a driver model (i.e. with dispatch routines).

    I’m not sure that I understand your question. In kernel mode you can wait on the event object using KeWaitForSingleObject. It should be called on the passive level IRQL only but you can create the dedicated system thread for this…