Hi.
I'm testing V8 debug on Android 2.2.
I posted similar problem as this, question again..
I patch in v8.cc
- add EnableAgent and SetDebugMessageDispatchHandler
but in this environment, after receive response about some request,
browser is forced terminated.
So "Søren Gjesse" reply me, remove SetDebugMessageDispatchHandler.
After removing that, performance is well done.
But I can't receive response immediately.
Question:
How can I receive response immediately without some actions on the
page triggering?
What is SetDebugMessageDispatchHandler function doing?
Please help me.
P.S) patch info to V8.cc
void DispatchDebugMessages() {
v8::Debug::ProcessDebugMessages();
}
bool V8::Initialize(Deserializer* des) {
...
v8::Debug::SetDebugMessageDispatchHandler(DispatchDebugMessages,
true);
v8::Debug::EnableAgent("Debug test", 9222, false);
return true;
}
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users