Re: [v8-users] v8::platform::PumpMessageLoop().

2015-10-13 Thread Jochen Eisinger
V8 posts certain tasks to the foreground message loop. If you don't implement one yourself and expose it via a custom v8::Platform, you'll have to pump the message loop of the default platform from time to time to execute those tasks. V8 also posts tasks to background threads - those threads will

Re: [v8-users] 64bit performance is lower than 32bit in android HUAWEI P8

2015-10-13 Thread Jakob Kummerow
On Tue, Oct 13, 2015 at 4:21 AM, Yong Wang wrote: > Hi everyone: > >we are using V8.3.27.34.15 > That's more than a year old and has known security issues. I wouldn't use that to browse the web. > in android device HUAWEI P8, and found that 64bit performance is

Re: [v8-users] 64bit performance is lower than 32bit in android HUAWEI P8

2015-10-13 Thread Yong Wang
thanks for reply. 在 2015年10月13日星期二 UTC+8下午4:15:38,Jakob Kummerow写道: > > On Tue, Oct 13, 2015 at 4:21 AM, Yong Wang > wrote: > >> Hi everyone: >> >>we are using V8.3.27.34.15 >> > > That's more than a year old and has known security issues. I wouldn't use > that to

Re: [v8-users] 64bit performance is lower than 32bit in android HUAWEI P8

2015-10-13 Thread Jakob Kummerow
On Tue, Oct 13, 2015 at 11:32 AM, Yong Wang wrote: > > > 在 2015年10月13日星期二 UTC+8下午4:15:38,Jakob Kummerow写道: >> >> On Tue, Oct 13, 2015 at 4:21 AM, Yong Wang wrote: >> >>> Hi everyone: >>> >>>we are using V8.3.27.34.15 >>> >> >> That's more than a

Re: [v8-users] 64bit performance is lower than 32bit in android HUAWEI P8

2015-10-13 Thread Yong Wang
在 2015年10月13日星期二 UTC+8下午4:15:38,Jakob Kummerow写道: > > On Tue, Oct 13, 2015 at 4:21 AM, Yong Wang > wrote: > >> Hi everyone: >> >>we are using V8.3.27.34.15 >> > > That's more than a year old and has known security issues. I wouldn't use > that to browse the web. >

Re: [v8-users] v8::platform::PumpMessageLoop().

2015-10-13 Thread 'Aaron Link' via v8-users
On Tue, Oct 13, 2015 at 3:06 AM, Jochen Eisinger wrote: > If you don't implement one yourself and expose it via a custom > v8::Platform, you'll have to pump the message loop of the default platform > from time to time to execute those tasks. > I never knew this (it's not

Re: [v8-users] v8::platform::PumpMessageLoop().

2015-10-13 Thread Jane Chen
So sounds like PumpMessageLoop can happen in the background after I return the result of a query, maybe even after I trigger garbage collection? On Tuesday, October 13, 2015 at 12:07:12 AM UTC-7, Jochen Eisinger wrote: > > V8 posts certain tasks to the foreground message loop. If you don't >