| Index: test/cctest/test-lockers.cc
|
| diff --git a/test/cctest/test-lockers.cc b/test/cctest/test-lockers.cc
|
| index 1b46887446f0bc30fea05e939decf6a449ce2a89..4579361f346cad7aade2d3237f672691ea4f3f4d 100644
|
| --- a/test/cctest/test-lockers.cc
|
| +++ b/test/cctest/test-lockers.cc
|
| @@ -64,7 +64,7 @@ class KangarooThread : public v8::internal::Thread {
|
| public:
|
| KangarooThread(v8::Isolate* isolate,
|
| v8::Handle<v8::Context> context, int value)
|
| - : Thread(NULL, "KangarooThread"),
|
| + : Thread("KangarooThread"),
|
| isolate_(isolate), context_(context), value_(value) {
|
| }
|
|
|
| @@ -150,7 +150,7 @@ class JoinableThread {
|
| class ThreadWithSemaphore : public i::Thread {
|
| public:
|
| explicit ThreadWithSemaphore(JoinableThread* joinable_thread)
|
| - : Thread(NULL, joinable_thread->name_),
|
| + : Thread(joinable_thread->name_),
|
| joinable_thread_(joinable_thread) {
|
| }
|
|
|
|
|