Sha256: 698d32438953039da08aa24bea25199fee9978177105f099ea6681d6d9d46e0e

Contents?: true

Size: 1.08 KB

Versions: 14

Compression:

Stored size: 1.08 KB

Contents

#include "uv.h"
#include "internal.h"
#include "winapi.h"

static void uv__register_system_resume_callback();

void uv__init_detect_system_wakeup() {
  /* Try registering system power event callback. This is the cleanest
   * method, but it will only work on Win8 and above.
   */
  uv__register_system_resume_callback();
}

static ULONG CALLBACK uv__system_resume_callback(PVOID Context,
                                                 ULONG Type,
                                                 PVOID Setting) {
  if (Type == PBT_APMRESUMESUSPEND || Type == PBT_APMRESUMEAUTOMATIC)
    uv__wake_all_loops();

  return 0;
}

static void uv__register_system_resume_callback() {
  _DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS recipient;
  _HPOWERNOTIFY registration_handle;

  if (pPowerRegisterSuspendResumeNotification == NULL)
    return;

  recipient.Callback = uv__system_resume_callback;
  recipient.Context = NULL;
  (*pPowerRegisterSuspendResumeNotification)(DEVICE_NOTIFY_CALLBACK,
                                             &recipient,
                                             &registration_handle);
}

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
libuv-3.1.7 ext/libuv/src/win/detect-wakeup.c
libuv-3.1.6 ext/libuv/src/win/detect-wakeup.c
libuv-3.1.5 ext/libuv/src/win/detect-wakeup.c
libuv-3.1.4 ext/libuv/src/win/detect-wakeup.c
node-compiler-0.9.1 vendor/node/deps/uv/src/win/detect-wakeup.c
node-compiler-0.9.0 vendor/node-v7.2.1/deps/uv/src/win/detect-wakeup.c
node-compiler-0.8.0 vendor/node-v7.2.0/deps/uv/src/win/detect-wakeup.c
libuv-3.1.3 ext/libuv/src/win/detect-wakeup.c
libuv-3.1.2 ext/libuv/src/win/detect-wakeup.c
node-compiler-0.7.0 vendor/node-v7.1.0/deps/uv/src/win/detect-wakeup.c
libuv-3.1.1 ext/libuv/src/win/detect-wakeup.c
libuv-3.1.0 ext/libuv/src/win/detect-wakeup.c
libuv-3.0.1 ext/libuv/src/win/detect-wakeup.c
libuv-3.0.0 ext/libuv/src/win/detect-wakeup.c