Your problem is that there is no "current" Isolate in the newly created thread, as you can see from the isolate=0x0000000000000000 lines in the backtrace. The "current Isolate" is thread-local state, and a big PITA, especially when combined with the default Isolate, as in your example. I don't know about node's API, but you should somehow make the Isolate you want to use explicit.
-- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" 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.
