0
votes
1answer
47 views

WdfRequestIsCanceled Vs WdfRequestMarkCancelable

Can anyone list the pros and cons of using below two approaches for IO cancellation in wdf? 1) mark request cancellable with WdfRequestMarkCancelable (). Provide a cancel routine and synchronize the ...
0
votes
2answers
186 views

Waiting for vertical blank in kernel mode?

I'm writing a driver that needs synchronization with vertical blank interrupt to send some data down the USB pipe. In user-mode there are Direct X functions available for this like ...
1
vote
1answer
268 views

Two Spinlocks on same processor?

Can two CPUs hold two "different" spin locks simultaneously at same time? So...does this mean: a sigle(uniprocessor) CPU cannot hold two "different" spinlocks at the same time? So...does this mean: ...