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

Unified Diff: runtime/bin/thread_pool_win.cc

Issue 9231020: Use platform implementation of Monitor in thread pool (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
« no previous file with comments | « 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
index cca9fc8d0d757ea4444e436132005501c76b15bf..cf6b860e76b44c0f80afe4857fe8c0e39dc413a3 100644
--- a/runtime/bin/thread_pool_win.cc
+++ b/runtime/bin/thread_pool_win.cc
@@ -4,27 +4,6 @@
#include "bin/thread_pool.h"
-TaskQueue::TaskQueue() : terminate_(false), head_(NULL), tail_(NULL) {
- UNIMPLEMENTED();
-}
-
-
-void TaskQueue::Insert(TaskQueueEntry* entry) {
- UNIMPLEMENTED();
-}
-
-
-void TaskQueue::Shutdown() {
- UNIMPLEMENTED();
-}
-
-
-TaskQueueEntry* TaskQueue::Remove() {
- UNIMPLEMENTED();
- return NULL;
-}
-
-
void ThreadPool::Start() {
UNIMPLEMENTED();
}
« no previous file with comments | « runtime/bin/thread_pool_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698