| 38 | } |
| 39 | |
| 40 | UThreadContext * UThreadContextSystem :: DoCreate(size_t stack_size, |
| 41 | UThreadFunc_t func, void * args, UThreadDoneCallback_t callback, |
| 42 | const bool need_stack_protect) { |
| 43 | return new UThreadContextSystem(stack_size, func, args, callback, need_stack_protect); |
| 44 | } |
| 45 | |
| 46 | void UThreadContextSystem :: Make(UThreadFunc_t func, void * args) { |
| 47 | func_ = func; |
nothing calls this directly
no outgoing calls
no test coverage detected