待機可能タイマー オブジェクトの使用
次の例では、10 秒の遅延後に通知されるタイマーを作成します。 まず、コードは CreateWaitableTimer 関数を使用して、待機可能タイマー オブジェクトを作成します。 次に、SetWaitableTimer 関数を使用してタイマーを設定します。 このコードでは、WaitForSingleObject 関数を使用して、タイマーが通知されたタイミングを判断します。
#include <windows.h>
#include <stdio.h>
int main()
{
HANDLE hTimer = NULL;
LARGE_INTEGER liDueTime;
liDueTime.QuadPart = -100000000LL;
// Create an unnamed waitable timer.
hTimer = CreateWaitableTimer(NULL, TRUE, NULL);
if (NULL == hTimer)
{
printf("CreateWaitableTimer failed (%d)\n", GetLastError());
return 1;
}
printf("Waiting for 10 seconds...\n");
// Set a timer to wait for 10 seconds.
if (!SetWaitableTimer(hTimer, &liDueTime, 0, NULL, NULL, 0))
{
printf("SetWaitableTimer failed (%d)\n", GetLastError());
return 2;
}
// Wait for the timer.
if (WaitForSingleObject(hTimer, INFINITE) != WAIT_OBJECT_0)
printf("WaitForSingleObject failed (%d)\n", GetLastError());
else printf("Timer was signaled.\n");
return 0;
}
関連トピック