singleton pause object to reduce allocation

This commit is contained in:
Danny Yoo 2012-03-01 23:18:05 -05:00
parent b788e1bb57
commit 0ad456d380
2 changed files with 6 additions and 5 deletions

View File

@ -488,11 +488,12 @@
var Pause = function(onPause) {
// onPause: MACHINE -> void
this.onPause = onPause || function(MACHINE) {};
this.onPause = onPause;
};
var THE_SINGLETON_PAUSE = new Pause();
var PAUSE = function(onPause) {
throw(new Pause(onPause));
THE_SINGLETON_PAUSE.onPause = onPause;
throw(THE_SINGLETON_PAUSE);
};
@ -564,7 +565,7 @@
scheduleTrampoline(that, thunk, release);
return;
}
} else if (e instanceof Pause) {
} else if (e === THE_SINGLETON_PAUSE) {
var pauseLock = new ExclusiveLock();
var oldArgcount = that.a;
var restarted = false;

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.213")
(define version "1.215")