adjusting the stack limit code to be nicer to firefox 3. Also added missing trampoline check in current-print.

This commit is contained in:
Danny Yoo 2011-06-06 15:17:32 -04:00
parent f095311284
commit 7ddbd48ba4

View File

@ -1,5 +1,7 @@
if(this['plt'] === undefined) { this['plt'] = {}; }
// All of the values here are namespaced under "plt.runtime".
(function(scope) {
@ -92,6 +94,8 @@ if(this['plt'] === undefined) { this['plt'] = {}; }
'current-print': new Closure(
function(MACHINE) {
if(--MACHINE.callsBeforeTrampoline<0) { throw arguments.callee; }
var elt = MACHINE.env.pop();
var outputPort =
MACHINE.params.currentOutputPort;
@ -1304,7 +1308,7 @@ if(this['plt'] === undefined) { this['plt'] = {}; }
setTimeout(function() {
findStackLimit(function(v) {
// Trying to be a little conservative.
STACK_LIMIT_ESTIMATE = Math.floor(v / 2);
STACK_LIMIT_ESTIMATE = Math.floor(v / 10);
});
},
0);