I have a method in DLL that calls using V8 C++ myMethod of myClass 
instance. If I don't call isolate_scope, the is a crash after making around 
100 calls to myMethod, I get an exception 0xC0000005: Access violation 
writing location 0x00000000. When I call isolate_scope, the exception does 
not happen even for 1 million calls.

There is one isolate only. I have already called isolate_scope in 
initialization
  isolate = Isolate::New(create_params);
  Isolate::Scope isolate_scope(isolate);
        
Could some one please tell why without isolate_scope I get exception after 
making 100 or so calls to myMethod?

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/v8-users/078cd53f-f3da-40e5-a3ef-770e6cede758n%40googlegroups.com.

Reply via email to