mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
779 B
40 lines
779 B
13 years ago
|
var isolates = process.binding('isolates');
|
||
|
|
||
|
var N = 4; // # of child isolates
|
||
|
|
||
|
if (process.tid === 1)
|
||
|
master();
|
||
|
else
|
||
|
child();
|
||
|
|
||
|
function master() {
|
||
|
for (var i = 0; i < N; ++i) spawn();
|
||
|
|
||
|
function spawn() {
|
||
|
var isolate = isolates.create(process.argv);
|
||
|
isolate.onexit = function() {
|
||
|
console.error("onexit isolate #%d", isolate.tid);
|
||
|
};
|
||
|
isolate.onmessage = function(m) {
|
||
|
console.error("parent received message '%s'", m);
|
||
|
isolate.send(Buffer('ACK ' + m));
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function child() {
|
||
|
var n = 0;
|
||
|
|
||
|
function send() {
|
||
|
if (++n > 10) return;
|
||
|
process._send(Buffer('SYN' + n));
|
||
|
setTimeout(send, 10);
|
||
|
}
|
||
|
|
||
|
send();
|
||
|
|
||
|
process._onmessage = function(m) {
|
||
|
console.error("child %d received message '%s'", process.tid, m);
|
||
|
};
|
||
|
}
|