About 1,950 results
Open links in new tab
  1. SetWaitableTimer function (synchapi.h) - Win32 apps

    Nov 18, 2024 · Activates the specified waitable timer. When the due time arrives, the timer is signaled and the thread that set the …

  2. Waitable Timer Objects - Win32 apps | Microsoft Learn

    Jan 7, 2021 · The thread calls the SetWaitableTimer function to activate the timer. Note the use of the following parameters for …

  3. Windows WaitableTimers in C++ - Stack Overflow

    After your call to SetWaitableTimer you should put that thread (which you are calling SetWaitableTimer in) in alertable state. To put a …

  4. SetWaitableTimer

    Feb 3, 2000 · The SetWaitableTimer function activates the specified waitable timer. When the due time arrives, the timer is signaled …

  5. SetWaitableTimer • Win32 Programmer's Reference • WinAPI Reference

    SetWaitableTimer [New - Windows NT] The SetWaitableTimer function activates the specified "waitable" timer. When the due time …

  6. c++ - CreateWaitableTimerEx and SetWaitableTimerEx with high …

    Sep 8, 2022 · If create a waitable timer with the flag CREATE_WAITABLE_TIMER_HIGH_RESOLUTION and without name, it …

  7. Waitable Timer Objects • Win32 Programmer's Reference • WinAPI …

    The thread calls the SetWaitableTimer function to activate the timer. Note the use of the following parameters for SetWaitableTimer: …

  8. win32/desktop-src/Sync/using-waitable-timer-objects.md at docs ... - GitHub

    The following example creates a timer that will be signaled after a 10 second delay. First, the code uses the CreateWaitableTimer …

  9. win32/desktop-src/Sync/waitable-timer-objects.md at docs ... - GitHub

    The thread calls the SetWaitableTimer function to activate the timer. Note the use of the following parameters for SetWaitableTimer: …

  10. timeSetEvent () or SetWaitableTimer ()?

    Oct 1, 2003 · timeSetEvent () or SetWaitableTimer ()? I want to run a thread which (as accurately as allowable in false-time …