From 666fa042431fe2648c5605479fd51ccb6dd55c91 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sun, 4 Dec 2011 20:47:00 -0500 Subject: [PATCH] turning off pre-emptive trampolining because of a very ugly bug. No energy to figure out how to fix it, so I'm turning it off for now. --- js-assembler/runtime-src/runtime.js | 14 +++++++++----- version.rkt | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/js-assembler/runtime-src/runtime.js b/js-assembler/runtime-src/runtime.js index 8e66cad..fa4f550 100644 --- a/js-assembler/runtime-src/runtime.js +++ b/js-assembler/runtime-src/runtime.js @@ -377,11 +377,15 @@ var recomputeMaxNumBouncesBeforeYield; var scheduleTrampoline = function(MACHINE, f) { - setTimeout( - function() { - return MACHINE.trampoline(f); - }, - 0); + // FIXME: at the moment, the setTimeout is breaking when we get + // a rapid set of events from web-world. We are running into + // a very ugly re-entrancy bug. https://github.com/dyoo/whalesong/issues/70 + + // setTimeout( + // function() { + return MACHINE.trampoline(f); + // }, + // 0); }; // Creates a restarting function, that reschedules f in a context diff --git a/version.rkt b/version.rkt index 865b3e0..96261f3 100644 --- a/version.rkt +++ b/version.rkt @@ -7,4 +7,4 @@ (provide version) (: version String) -(define version "1.96") +(define version "1.97")