OLD | NEW |
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" |
(...skipping 23 matching lines...) Expand all Loading... |
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::platform | 44 } // namespace platform |
| 45 } // namespace v8 |
45 | 46 |
46 | 47 |
47 #endif // V8_LIBPLATFORM_TASK_QUEUE_H_ | 48 #endif // V8_LIBPLATFORM_TASK_QUEUE_H_ |
OLD | NEW |