node/benchmark/process_loop.js

19 lines
348 B
JavaScript
Raw Normal View History

2010-03-09 11:06:25 +08:00
var sys = require("../lib/sys");
function next (i) {
if (i <= 0) return;
var child = process.createChildProcess("echo", ["hello"]);
child.addListener("output", function (chunk) {
2010-03-09 11:06:25 +08:00
if (chunk) sys.print(chunk);
});
child.addListener("exit", function (code) {
if (code != 0) process.exit(-1);
next(i - 1);
});
}
next(500);