| 32 | |
| 33 | public: |
| 34 | JobItemQueue(const char8_t* name) |
| 35 | : waiting_workers_count(0) , name(name) , is_end_job_queued(false) |
| 36 | { |
| 37 | cond = SkrNew<JobQueueCond>(); |
| 38 | cond->initialize(u8"SampleUtilJobItemQueueCond"); |
| 39 | SKR_ASSERT(cond != nullptr); |
| 40 | } |
| 41 | |
| 42 | ~JobItemQueue() |
| 43 | { |
nothing calls this directly
no test coverage detected