Status: New
Owner: ----

New issue 2062 by [email protected]: limit on the count of isolate?
http://code.google.com/p/v8/issues/detail?id=2062

I created a large number of context objects in different threads using isolate.

        isolate = v8::Isolate::New();
        v8::Locker v8ThreadLock(isolate);
        v8::Isolate::Scope isolate_scope(isolate);
        mExternals = new vector<JavascriptExternal*>();
        mContext = new Persistent<Context>(Context::New());

I have to create only 50-55 copies of an context object
then I got an error message.

=============================================================
Fatal error in isolate.h, line 985
CHECK(thread_local_top_.isolate == this) failed
=============================================================


What is the limit on the number of context objects?


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to