2017年9月8日
摘要: 1 // 计时器.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include 6 #include 7 #include 8 using namespace std; 9 10 BOOL __IsLoop = TRUE; 11 12 13 void GetSystemTime(); 14 DWORD W... 阅读全文
posted @ 2017-09-08 21:18 czhang4 阅读(164) 评论(0) 推荐(0)
摘要: 1 // TimerAPCRoutine.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include 6 #include 7 #include 8 9 10 using namespace std; 11 12 13 void GetSystemTime(); 14 VO... 阅读全文
posted @ 2017-09-08 21:18 czhang4 阅读(336) 评论(0) 推荐(0)
摘要: 一,IRQL的定义Interrupt ReQuest Level DDK对IRQL的定义是:中断请求级(IRQL)标示中断的优先级。处理器在一个IRQL上执行线程代码,IRQL是帮助决定线程如何被中断的。每个处理器都有自己的中断IRQL。 在同一处理器上,线程只能被更高级别IRQL的线程能中断。也就 阅读全文
posted @ 2017-09-08 20:47 czhang4 阅读(1003) 评论(0) 推荐(0)