Re: [v8-users] Javascript event loop

2016-11-16 Thread 김대호
thank you! ben then what about event loop thread? Are v8 and event loop same thread? -- -- 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

Re: [v8-users] Re: Linking V8 to app on Windows

2016-11-16 Thread Ivan Pizhenko
Edited gni/v8.gni as you recommended and trying to build with following args.gn: is_component_build = false is_debug = true v8_optimized_debug=false target_cpu="x64" v8_target_cpu="x64" and getting following error: ninja -j1 -C out.gn/x64.debug ninja: Entering directory `out.gn/x64.debug'

Re: [v8-users] Embedded v8 in Android: crash when executing persistent Function in another thread

2016-11-16 Thread Kevin Read
Hi Jochen, I've filed a bug (https://bugs.chromium.org/p/v8/issues/detail?id=5645). Since our SDK is open source I added pointers to code that will reproduce the issue. Thanks and best, Kevin On Thursday, November 10, 2016 at 2:46:37 PM UTC+1, Jochen Eisinger wrote: > > can you file a bug at

Re: [v8-users] Javascript event loop

2016-11-16 Thread Ben Noordhuis
On Wed, Nov 16, 2016 at 10:44 AM, 김대호 wrote: > hello~ i'm beginner at javascript > > There are questions about the javascript event loop. > > i know there is only one thread in v8. > > Are event loop and v8 on same thread ? > > also, does setTimeout code works on seperate