This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 请教驱动大虾:在kernel mode中接收一个硬件中断,如何通知user mode的应用?
-xxjjs(东方射日);
2004-1-26
(#1577138@0)
-
UP!UP! :(
-xxjjs(东方射日);
2004-1-26
(#1578380@0)
-
what OS?
-eagle_no1(瞎起哄);
2004-1-26
(#1578454@0)
-
Sorry I forget. Upon Windows2000
-xxjjs(东方射日);
2004-1-26
(#1578456@0)
-
sorry! no idea about windows!
-eagle_no1(瞎起哄);
2004-1-26
(#1578461@0)
-
11! 一付搞大机的牛样,哈。顶楼,又射又日的,不好吧。
-workopolis(﹡ 枫树下のCOYOTE ﹡);
2004-1-26
(#1578483@0)
-
DeviceIoControlMethod 1
The application makes a DeviceIoControl to the driver. The driver returns STATUS_PENDING. When the event occurs, the driver completes the IRP. The thread returns from the DeviceIoControl call and handles the event.
Method 2
The application creates an event object, and passes the handle to the driver via DeviceIoControl. The driver obtains an object pointer for the event, which it can then set or reset.
-netwind(网风);
2004-1-27
{419}
(#1579086@0)
-
Refer to DDK document, use ISR, DPC and dispatch routine
-enchanted(π);
2004-1-27
(#1579814@0)