Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(626)

Unified Diff: runtime/bin/thread_pool_win.cc

Issue 8983017: Start of thread pool implementation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix compilation on Windows Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« runtime/bin/thread_pool_macos.h ('K') | « runtime/bin/thread_pool_win.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
+}
« runtime/bin/thread_pool_macos.h ('K') | « runtime/bin/thread_pool_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698