| 6 | using namespace xsched::preempt; |
| 7 | |
| 8 | CommandBuffer::CommandBuffer(XQueueHandle xq_h): kXQueueHandle(xq_h) |
| 9 | { |
| 10 | Enqueue(std::make_shared<XQueueWaitAllCommand>()); |
| 11 | XASSERT(last_enqueued_cmd_ != nullptr, "last_enqueued_cmd_ should not be nullptr"); |
| 12 | } |
| 13 | |
| 14 | void CommandBuffer::WaitForNextIdle() |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected