Index: runtime/bin/thread_pool_win.cc |
diff --git a/runtime/bin/thread_pool_win.cc b/runtime/bin/thread_pool_win.cc |
index 2c202e93fc866613cdb75761f647a41ba988423b..cca9fc8d0d757ea4444e436132005501c76b15bf 100644 |
--- a/runtime/bin/thread_pool_win.cc |
+++ b/runtime/bin/thread_pool_win.cc |
@@ -4,7 +4,7 @@ |
#include "bin/thread_pool.h" |
-TaskQueue::TaskQueue() : head_(NULL), tail_(NULL) { |
+TaskQueue::TaskQueue() : terminate_(false), head_(NULL), tail_(NULL) { |
UNIMPLEMENTED(); |
} |
@@ -14,6 +14,11 @@ void TaskQueue::Insert(TaskQueueEntry* entry) { |
} |
+void TaskQueue::Shutdown() { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
TaskQueueEntry* TaskQueue::Remove() { |
UNIMPLEMENTED(); |
return NULL; |
@@ -23,3 +28,8 @@ TaskQueueEntry* TaskQueue::Remove() { |
void ThreadPool::Start() { |
UNIMPLEMENTED(); |
} |
+ |
+ |
+void ThreadPool::Shutdown() { |
+ UNIMPLEMENTED(); |
+} |