| 107 | } |
| 108 | |
| 109 | inline |
| 110 | butil::ResourceId<TimerThread::Task> slot_of_task_id(TimerThread::TaskId id) { |
| 111 | butil::ResourceId<TimerThread::Task> slot = { (id & 0xFFFFFFFFul) }; |
| 112 | return slot; |
| 113 | } |
| 114 | |
| 115 | inline uint32_t version_of_task_id(TimerThread::TaskId id) { |
| 116 | return (uint32_t)(id >> 32); |
no outgoing calls
no test coverage detected