Re: [v8-dev] Threading inside V8

2017-10-21 Thread Ben Noordhuis
On Sat, Oct 21, 2017 at 8:28 AM, Vaibhav Pande wrote: > From what I have seen till now the there is a thread pool created which > waits on the DefaultPlatform::queue_ and a task is popped by taking a > lock(work sharing). That's the default Platform implementation;

[v8-dev] Threading inside V8

2017-10-21 Thread Vaibhav Pande
Hi, I am new to V8 and was in the process of exploring the implementation of threading inside the V8 engine. >From what I have seen till now the there is a thread pool created which waits on the DefaultPlatform::queue_ and a task is popped by taking a lock(work sharing). What I am not sure of