| 858 | } |
| 859 | |
| 860 | void MtFrame::RemovePend(MicroThread* thread) |
| 861 | { |
| 862 | ASSERT(thread->HasFlag(MicroThread::PEND_LIST)); |
| 863 | thread->UnsetFlag(MicroThread::PEND_LIST); |
| 864 | TAILQ_REMOVE(&_pend_list, thread, _entry); |
| 865 | } |
| 866 | |
| 867 | void MtFrame::WaitNotify(utime64_t timeout) |
| 868 | { |
no test coverage detected