Revision: 8265
Author:   [email protected]
Date:     Fri Jun 10 05:41:26 2011
Log: corrected parts in d8 that accesses the new "deisolated" Thread in platform.h
http://code.google.com/p/v8/source/detail?r=8265

Modified:
 /branches/bleeding_edge/src/d8-debug.h
 /branches/bleeding_edge/src/d8.cc

=======================================
--- /branches/bleeding_edge/src/d8-debug.h      Fri Mar 18 13:35:07 2011
+++ /branches/bleeding_edge/src/d8-debug.h      Fri Jun 10 05:41:26 2011
@@ -99,7 +99,7 @@
 class ReceiverThread: public i::Thread {
  public:
   ReceiverThread(i::Isolate* isolate, RemoteDebugger* remote_debugger)
-      : Thread(isolate, "d8:ReceiverThrd"),
+      : Thread("d8:ReceiverThrd"),
         remote_debugger_(remote_debugger) {}
   ~ReceiverThread() {}

@@ -114,7 +114,7 @@
 class KeyboardThread: public i::Thread {
  public:
explicit KeyboardThread(i::Isolate* isolate, RemoteDebugger* remote_debugger)
-      : Thread(isolate, "d8:KeyboardThrd"),
+      : Thread("d8:KeyboardThrd"),
         remote_debugger_(remote_debugger) {}
   ~KeyboardThread() {}

=======================================
--- /branches/bleeding_edge/src/d8.cc   Thu Jun  9 08:07:45 2011
+++ /branches/bleeding_edge/src/d8.cc   Fri Jun 10 05:41:26 2011
@@ -772,7 +772,7 @@
 class ShellThread : public i::Thread {
  public:
   ShellThread(i::Isolate* isolate, int no, i::Vector<const char> files)
-    : Thread(isolate, "d8:ShellThread"),
+    : Thread("d8:ShellThread"),
       no_(no), files_(files) { }
   virtual void Run();
  private:

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to