electron/shell/common/node_bindings_linux.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1,020 B
C++
Raw Normal View History

// Copyright (c) 2014 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.
#include "shell/common/node_bindings_linux.h"
#include <sys/epoll.h>
namespace electron {
2017-03-08 08:33:44 +00:00
NodeBindingsLinux::NodeBindingsLinux(BrowserEnvironment browser_env)
2018-04-18 01:55:30 +00:00
: NodeBindings(browser_env), epoll_(epoll_create(1)) {
auto* const event_loop = uv_loop();
int backend_fd = uv_backend_fd(event_loop);
2018-04-18 01:55:30 +00:00
struct epoll_event ev = {0};
ev.events = EPOLLIN;
ev.data.fd = backend_fd;
epoll_ctl(epoll_, EPOLL_CTL_ADD, backend_fd, &ev);
}
void NodeBindingsLinux::PollEvents() {
auto* const event_loop = uv_loop();
int timeout = uv_backend_timeout(event_loop);
// Wait for new libuv events.
int r;
do {
struct epoll_event ev;
r = epoll_wait(epoll_, &ev, 1, timeout);
} while (r == -1 && errno == EINTR);
}
// static
2017-03-08 08:33:44 +00:00
NodeBindings* NodeBindings::Create(BrowserEnvironment browser_env) {
return new NodeBindingsLinux(browser_env);
}
2014-02-20 17:07:47 +00:00
} // namespace electron