Files
PiAlive/node_modules/epoll/test/one-shot.js
2018-05-16 10:10:23 +02:00

29 lines
610 B
JavaScript

'use strict';
/*
* Make sure a single EPOLLONESHOT event can be handled.
*
* This test expects a newline as input on stdin.
*/
var Epoll = require('../build/Release/epoll').Epoll,
util = require('./util'),
eventCount = 0,
epoll,
stdin = 0; // fd for stdin
epoll = new Epoll(function (err, fd, events) {
eventCount += 1;
if (eventCount === 1) {
setTimeout(function () {
util.read(fd); // read stdin (the newline)
epoll.remove(fd).close();
}, 100);
} else {
console.log('*** Error: unexpected event');
}
});
epoll.add(stdin, Epoll.EPOLLIN | Epoll.EPOLLONESHOT);