| 560 | } |
| 561 | |
| 562 | void* mt_get_msg_private() |
| 563 | { |
| 564 | MicroThread *msg_thread = MtFrame::Instance()->GetRootThread(); |
| 565 | if (NULL == msg_thread) |
| 566 | { |
| 567 | return NULL; |
| 568 | } |
| 569 | |
| 570 | return msg_thread->GetPrivate(); |
| 571 | } |
| 572 | |
| 573 | bool mt_init_frame(int argc, char * const argv[]) |
| 574 | { |
nothing calls this directly
no test coverage detected