Chromium Code Reviews| Index: src/d8.cc |
| =================================================================== |
| --- src/d8.cc (revision 6139) |
| +++ src/d8.cc (working copy) |
| @@ -599,7 +599,8 @@ |
| class ShellThread : public i::Thread { |
| public: |
| ShellThread(int no, i::Vector<const char> files) |
| - : no_(no), files_(files) { } |
| + : Thread("d8:ShellThread"), |
| + no_(no), files_(files) { } |
| virtual void Run(); |
| private: |
| int no_; |