| 356 | } |
| 357 | |
| 358 | void ScheduleObj::ScheduleReclaim() |
| 359 | { |
| 360 | MtFrame* frame = MtFrame::Instance(); |
| 361 | MicroThread* thread = frame->GetActiveThread(); |
| 362 | if ((!frame) || (!thread)) { |
| 363 | MTLOG_ERROR("frame and act thread null, %p, %p", frame, thread); |
| 364 | return; |
| 365 | } |
| 366 | |
| 367 | frame->FreeThread(thread); |
| 368 | } |
| 369 | |
| 370 | void ScheduleObj::ScheduleStartRun() |
| 371 | { |
no test coverage detected