]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread.h
Move most platform-specific code into overlay directories
[libs/core.git] / source / core / thread.h
index 81494eaf5e47a007d6bd6207293a972920277362..1fff3627b037287aac89cb8e68e77f15d5543b47 100644 (file)
@@ -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;
 };