X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fthread.h;h=1fff3627b037287aac89cb8e68e77f15d5543b47;hp=81494eaf5e47a007d6bd6207293a972920277362;hb=609c9a508cfdc7b42c46c4f21d17639204165a00;hpb=b4806214e905752617691f851717033fd3f266c2 diff --git a/source/core/thread.h b/source/core/thread.h index 81494ea..1fff362 100644 --- a/source/core/thread.h +++ b/source/core/thread.h @@ -50,6 +50,12 @@ protected: /** Starts the thread. Can only be called once for each Thread instance. */ void launch(); +private: + void platform_join(); + void platform_kill(); + void platform_launch(); + +protected: virtual void main() = 0; };