| Index: runtime/bin/thread_pool_win.cc
|
| diff --git a/runtime/bin/thread_pool_win.cc b/runtime/bin/thread_pool_win.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2c202e93fc866613cdb75761f647a41ba988423b
|
| --- /dev/null
|
| +++ b/runtime/bin/thread_pool_win.cc
|
| @@ -0,0 +1,25 @@
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +#include "bin/thread_pool.h"
|
| +
|
| +TaskQueue::TaskQueue() : head_(NULL), tail_(NULL) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void TaskQueue::Insert(TaskQueueEntry* entry) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +TaskQueueEntry* TaskQueue::Remove() {
|
| + UNIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void ThreadPool::Start() {
|
| + UNIMPLEMENTED();
|
| +}
|
|
|