X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fthread_private.h;fp=source%2Fcore%2Fthread_private.h;h=f64c582c6e17a0bfa6760ec36c5618cbd8c8761d;hb=609c9a508cfdc7b42c46c4f21d17639204165a00;hp=0000000000000000000000000000000000000000;hpb=b4806214e905752617691f851717033fd3f266c2;p=libs%2Fcore.git diff --git a/source/core/thread_private.h b/source/core/thread_private.h new file mode 100644 index 0000000..f64c582 --- /dev/null +++ b/source/core/thread_private.h @@ -0,0 +1,19 @@ +#ifndef MSP_CORE_THREAD_PRIVATE_H_ +#define MSP_CORE_THREAD_PRIVATE_H_ + +#include "thread_platform.h" + +namespace Msp { + +struct Thread::Private +{ + ThreadHandle handle; + + Private(): handle(0) { } + + static ThreadReturn THREAD_CALL main_wrapper(void *); +}; + +} // namespace Msp + +#endif