Let exit listeners know the exit code

This commit is contained in:
isaacs 2010-10-23 16:44:19 -07:00 коммит произвёл Ryan Dahl
Родитель fd70d30a9c
Коммит 4c514a723c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -570,8 +570,8 @@ global.console.assert = function(expression){
global.Buffer = module.requireNative('buffer').Buffer;
process.exit = function (code) {
process.emit("exit");
process.reallyExit(code);
process.emit("exit", code || 0);
process.reallyExit(code || 0);
};
process.kill = function (pid, sig) {