OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium 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 THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_ENQUEUE_ORDER_H_ | 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_ENQUEUE_ORDER_H_ |
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_ENQUEUE_ORDER_H_ | 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_ENQUEUE_ORDER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
11 | 11 |
12 namespace blink { | 12 namespace blink { |
13 namespace scheduler { | 13 namespace scheduler { |
14 namespace internal { | 14 namespace internal { |
15 | 15 |
16 using EnqueueOrder = uint64_t; | 16 using EnqueueOrder = uint64_t; |
17 | 17 |
18 // A 64bit integer used to provide ordering of tasks. | |
Sami
2016/08/18 15:53:43
Should we also mention we don't support these wrap
alex clarke (OOO till 29th)
2016/08/18 16:51:41
Done.
| |
18 class EnqueueOrderGenerator { | 19 class EnqueueOrderGenerator { |
19 public: | 20 public: |
20 EnqueueOrderGenerator(); | 21 EnqueueOrderGenerator(); |
21 ~EnqueueOrderGenerator(); | 22 ~EnqueueOrderGenerator(); |
22 | 23 |
24 // Returns a monotonically increasing integer, starting from one. Can be | |
25 // called from any thread. | |
23 EnqueueOrder GenerateNext(); | 26 EnqueueOrder GenerateNext(); |
24 | 27 |
28 static bool isValidEnqueueOrder(EnqueueOrder enqueue_order) { | |
Sami
2016/08/18 15:53:43
nit: IsValidEnqueueOrder
alex clarke (OOO till 29th)
2016/08/18 16:51:41
Done.
| |
29 return enqueue_order != 0ull; | |
30 } | |
31 | |
25 private: | 32 private: |
26 base::Lock lock_; | 33 base::Lock lock_; |
27 EnqueueOrder enqueue_order_; | 34 EnqueueOrder enqueue_order_; |
28 }; | 35 }; |
29 | 36 |
30 } // namespace internal | 37 } // namespace internal |
31 } // namespace scheduler | 38 } // namespace scheduler |
32 } // namespace blink | 39 } // namespace blink |
33 | 40 |
34 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_ENQUEUE_ORDER_H_ | 41 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_ENQUEUE_ORDER_H_ |
OLD | NEW |