Status: New
Owner: ----

New issue 1427 by [email protected]: assert in StartPreemption() when calling with Isolate API
http://code.google.com/p/v8/issues/detail?id=1427

in ContextSwitcher::StartPreemption(int every_n_ms), there is a call to

  ASSERT(Locker::IsLocked());

It should be

  ASSERT(Locker::IsLocked(isolate));

so that it checks locker against the current isolate rather than default isolate





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

Reply via email to