Hard to say without more information. Debug it?

On Tue, Apr 22, 2014 at 6:25 PM, Nozik <[email protected]> wrote:

> Thanks Dmitry, but the problem happens even when I'm not calling Enter
> before acquiring the lock.
>
> Any other ideas?
>
> Thanks.
>
> On Tuesday, April 22, 2014 6:15:50 PM UTC+3, Dmitry Lomov wrote:
>
>> You should always enter isolates _after_ you acquired a lock on it, not
>> before.
>> You do not need to use Enter directly: Isolate::Scope is RIAA-style
>> wrapper around Isolate::Enter/Exit.
>>
>> HTH,
>> Dmitry
>>
>>
>> On Tue, Apr 22, 2014 at 4:50 PM, Nozik <[email protected]> wrote:
>>
>>> Hi all,
>>>
>>> I've upgraded an old V8 to an updated version and encountered the
>>> following problem:
>>>
>>> I'm creating Isolates several times in the code, and then calling the
>>> Locker.
>>>
>>> _isolate = Isolate::New();
>>>> _isolate->Enter();
>>>> Locker lock(_isolate);
>>>> Isolate::Scope isolateScope(_isolate);
>>>
>>>
>>> However I sometimes get an access violation exception in the Locker
>>> constructor, which doesn't make any sense, since I've just created the
>>> isolate...
>>>
>>> My questions are:
>>> 1. Why am I getting these exceptions?
>>> 2. Do I really need to use Enter() after creating the isolate? Is that
>>> the way to control which Isolate is returned when calling
>>> Isolate::GetCurrent()?
>>> 3. Generally, what are the precautions to be taken when using the same
>>> Isolate in different threads?
>>>
>>> Thanks.
>>>
>>> --
>>> --
>>> 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.
>>>
>>
>>  --
> --
> 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.
>

-- 
-- 
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.

Reply via email to