Hi, This is the exact, complete program, that is failing..
class TestThread : public Thread::Thread
{
public:
TestThread(){};
void TestThread::run()
{
v8::HandleScope scope;//<--This failes
}
};
int main(int argc, const char* argv[])
{
v8::HandleScope scope; //<--This works
TestThread mythread;
mythread.start();
mythread.waitDone();
}
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
