#include <windows.h>
#include <stdio.h>
TASK (Task2ms)
{
printf("Hello"):
SetEvent(Task1);
}
void main()
{
int arg;
HANDLE Task1;
HANDLE HTimer1 =NULL;
HANDLE HTimerQueue1 = NULL;
Task1 = CreateEvent(NULL, TRUE, FALSE, NULL);
if(NULL == Task1)
{
printf("CreateEvent failed (%d)\n", GetLastError());
return 1;
}
//create a timer queue
HTimerQueue1 = CreateTimerQueue();
if(NULL == HTimerQueue1)
{
printf("CreateTimerQueue failed (%d)\n", GetLastError());
return 2;
}
//phNewTimer - Pointer to a handle; this is an out value
//TimerQueue - Timer queue handle. For the default timer queue, NULL
//Callback - Pointer to the callback function
//Parameter - Value passed to the callback function
//DueTime - Time (milliseconds), before the timer is set to the signaled state for the first time
//Period - Timer period (milliseconds). If zero, timer is signaled only once
//Flags - One or more of the next values (table taken from MSDN):
//set the timer to call the timer routine in 2ms
if(!CreateTimerQueueTimer( &HTimer1, HTimerQueue1, (WAITORTIMERCALLBACK)TASK, &arg, 2,0,0))
{
printf("CreateTimerQueueTimer failed (%d)\n", GetLastError());
return 3;
}
//Do other work here
printf("Call timer routine in 2 milliseconds...\n");
// wait for the timeröqueue thread to complete using an event
if (WaitForSingleObject(Task1, INFINITE) !=WAIT_OBJECT_0)
printf("WaitForSingleObject failed (%d)\n", GetLastError());
CloseHandle(Task1);
//Delete all timers in the timer queue
if(!DeleteTimerQueue(HTimerQueue1))
printf("DeleteTimerQueue failed (%d)\n", GetLastError());
return 0;
}
我创建了一个名为Task(task 2ms)的函数,每2ms调用一次。所以我为它创建了一个计时器队列。如果我这样做,那么将每2ms调用一次Task函数。这是对的吗?
答案 0 :(得分:2)
...每2ms调用一次。这是对的吗?
不,这不对。
设置计时器队列计时器时,需要遵循以下文档:
您指定DueTime
为2毫秒!
DueTime:相对于首次发出定时器信号之前必须经过的当前时间的毫秒数。
你指定Period
为零!
计时器的周期,以毫秒为单位。如果此参数为零,则会向计时器发出一次信号。如果此参数大于零,则计时器是周期性的。每当周期结束时,周期性计时器会自动重新激活,直到计时器被取消。
您必须将Period
指定为2 ms。
但是你的代码无论如何都没有处理多个计时器事件。它只是在第一个计时器事件发生后结束。因此,您可能不得不在代码上花费更多时间,例如:
while (1) {
if (WaitForSingleObject(Task1, INFINITE) == WAIT_OBJECT_0) {
printf("2 ms event occurred!\n");
} else {
printf("WaitForSingleObject failed (%d)\n", GetLastError());
break;
}
}
P.S。:Task2ms
是什么?并且:printf("Hello"):
必须由printf("Hello\n");
替换(使用分号作为终结符/语句分隔符!)。
你实际上在询问你从未尝试过的代码。你不应该期望人们热衷于回答这些问题。