技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2015-06-03 18:38:26
http://www.programlife.net/win-ddk-paged_code.htmlPAGED_CODE这个宏可以确保调用线程运行在一个允许分页的足够低IRQL级别。参数:无返回值:无注释:如果IRQL > APC_LEVEL,则PAGED_CODE()会对系统产生一个断言。对这个宏的调用必须放在一个包含有可以使用分页内存的代码或者访问分页内存的代码的驱动例.........【阅读全文】
发布时间:2015-06-03 18:37:28
windows驱动开发http://www.programlife.net/category/windev/winwdk......【阅读全文】
发布时间:2015-06-03 18:36:17
There are two types of input/output (I/O) synchronization: synchronous I/O and asynchronous I/O. Asynchronous I/O is also referred to as overlapped I/O.In synchronous file I/O, a thread starts an I/O operation and immediately enters a wait state until the I/O request has completed. A thr.........【阅读全文】
发布时间:2015-06-03 13:33:48
OVERLAPPED结构与GetOverlappedResult函数http://blog.csdn.net/aafengyuan/article/details/7415072异步I/O调用时,我们会用到OVERLAPPED结构和函数GetOverlappedResult。以前一直对GetOverlappedResult比较困惑,这两天看书和代码才知道这个函数的主要作用不过是将Overlapped返回的结果进行一次简单的分析而已。下.........【阅读全文】