| 30 | public: |
| 31 | template <class CLASS, int (CLASS::*PROC)(void)> |
| 32 | static Thread |
| 33 | ThreadCreateObjectFunctor(CLASS *pthis) |
| 34 | { |
| 35 | return createThread(createThreadAux<CLASS, PROC>, pthis); |
| 36 | } |
| 37 | |
| 38 | template <class CLASS, int (CLASS::*PROC)(void)> |
| 39 | static _size_t THREAD_PROC |
nothing calls this directly
no outgoing calls
no test coverage detected