electron/atom/common/node_bindings_win.cc

44 lines
1.1 KiB
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/common/node_bindings_win.h"
#include <windows.h>
#include "base/logging.h"
extern "C" {
#include "vendor/node/deps/uv/src/win/internal.h"
}
namespace atom {
2017-03-08 08:33:44 +00:00
NodeBindingsWin::NodeBindingsWin(BrowserEnvironment browser_env)
2018-04-18 01:55:30 +00:00
: NodeBindings(browser_env) {}
2018-04-18 01:55:30 +00:00
NodeBindingsWin::~NodeBindingsWin() {}
void NodeBindingsWin::PollEvents() {
// If there are other kinds of events pending, uv_backend_timeout will
// instruct us not to wait.
DWORD bytes, timeout;
ULONG_PTR key;
OVERLAPPED* overlapped;
timeout = uv_backend_timeout(uv_loop_);
2018-04-18 01:55:30 +00:00
GetQueuedCompletionStatus(uv_loop_->iocp, &bytes, &key, &overlapped, timeout);
// Give the event back so libuv can deal with it.
if (overlapped != NULL)
2018-04-18 01:55:30 +00:00
PostQueuedCompletionStatus(uv_loop_->iocp, bytes, key, overlapped);
}
// static
2017-03-08 08:33:44 +00:00
NodeBindings* NodeBindings::Create(BrowserEnvironment browser_env) {
return new NodeBindingsWin(browser_env);
}
} // namespace atom