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

Side by Side Diff: src/libplatform/task-queue.h

Issue 336313017: Move libplatform files into v8::platform namespace (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/libplatform/default-platform.cc ('k') | src/libplatform/task-queue.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_LIBPLATFORM_TASK_QUEUE_H_ 5 #ifndef V8_LIBPLATFORM_TASK_QUEUE_H_
6 #define V8_LIBPLATFORM_TASK_QUEUE_H_ 6 #define V8_LIBPLATFORM_TASK_QUEUE_H_
7 7
8 #include <queue> 8 #include <queue>
9 9
10 #include "src/base/macros.h" 10 #include "src/base/macros.h"
11 #include "src/base/platform/mutex.h" 11 #include "src/base/platform/mutex.h"
12 #include "src/base/platform/semaphore.h" 12 #include "src/base/platform/semaphore.h"
13 13
14 namespace v8 { 14 namespace v8 {
15 15
16 class Task; 16 class Task;
17 17
18 namespace internal { 18 namespace platform {
19 19
20 class TaskQueue { 20 class TaskQueue {
21 public: 21 public:
22 TaskQueue(); 22 TaskQueue();
23 ~TaskQueue(); 23 ~TaskQueue();
24 24
25 // Appends a task to the queue. The queue takes ownership of |task|. 25 // Appends a task to the queue. The queue takes ownership of |task|.
26 void Append(Task* task); 26 void Append(Task* task);
27 27
28 // Returns the next task to process. Blocks if no task is available. Returns 28 // Returns the next task to process. Blocks if no task is available. Returns
29 // NULL if the queue is terminated. 29 // NULL if the queue is terminated.
30 Task* GetNext(); 30 Task* GetNext();
31 31
32 // Terminate the queue. 32 // Terminate the queue.
33 void Terminate(); 33 void Terminate();
34 34
35 private: 35 private:
36 base::Mutex lock_; 36 base::Mutex lock_;
37 base::Semaphore process_queue_semaphore_; 37 base::Semaphore process_queue_semaphore_;
38 std::queue<Task*> task_queue_; 38 std::queue<Task*> task_queue_;
39 bool terminated_; 39 bool terminated_;
40 40
41 DISALLOW_COPY_AND_ASSIGN(TaskQueue); 41 DISALLOW_COPY_AND_ASSIGN(TaskQueue);
42 }; 42 };
43 43
44 } } // namespace v8::internal 44 } } // namespace v8::platform
45 45
46 46
47 #endif // V8_LIBPLATFORM_TASK_QUEUE_H_ 47 #endif // V8_LIBPLATFORM_TASK_QUEUE_H_
OLDNEW
« no previous file with comments | « src/libplatform/default-platform.cc ('k') | src/libplatform/task-queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698