This commit is contained in:
isaacs 2012-08-27 12:51:25 -07:00
parent e5d95ba939
commit 985e3a25cb
3 changed files with 4 additions and 4 deletions

View File

@ -450,4 +450,4 @@ if (isWindows) {
exports._makeLong = function(path) {
return path;
};
}
}

View File

@ -308,7 +308,7 @@ function processImmediate() {
if (immediate.domain) immediate.domain.exit();
}
};
}
exports.setImmediate = function(callback) {

View File

@ -580,13 +580,13 @@
wrap.unref();
wrap.onsignal = function () { process.emit(type); };
wrap.onsignal = function() { process.emit(type); };
var signum = startup.lazyConstants()[type];
var r = wrap.start(signum);
if (r) {
wrap.close();
throw errnoException(errno, "uv_signal_start");
throw errnoException(errno, 'uv_signal_start');
}
signalWraps[type] = wrap;