Hi Alon. Can i use emterpreter to avoid problems related to infinite loops. 
For example i have game that mostly emscripten ready, but some functions 
contains infinite loops that can't be easily rewritten.

void infinite() {
  while (true) {
     // ...
     while (true) {
       // ..
       if (something) break;
     }
    if (something2) break;  
  }
}

Can i use emterpreter only for function infinite and after that it will 
work fine in browser?

-- 
You received this message because you are subscribed to the Google Groups 
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to