[v8-users] Is it possible to implement N:M schedule model using isolate and native thread?

2020-08-11 Thread Ran Aizen
I saw the v8 description says: > Isolate represents an isolated instance of the V8 engine. V8

Re: [v8-users] Is it possible to implement N:M schedule model using isolate and native thread?

2020-08-11 Thread Ran Aizen
ution" and cleanup the stack frame, so we can't continue the execution from where we stopped? 在2020年8月11日星期二 UTC+8 下午6:26:25 写道: > On Tue, Aug 11, 2020 at 9:38 AM Ran Aizen wrote: > > > > I saw the v8 description says: > > > > > Isolate represents an isolate

Re: [v8-users] Is it possible to implement N:M schedule model using isolate and native thread?

2020-08-11 Thread Ran Aizen
Thank you Ben~ I just read the a little code implementation, but I still confused when should I use *isolate->enter()* and *isolate->exit()* ? What's the use case of them? 在2020年8月12日星期三 UTC+8 上午12:45:36 写道: > On Tue, Aug 11, 2020 at 5:56 PM Ran Aizen wrote: > > From your