18 #include "pandabase.h" 19 #include "selectThreadImpl.h" 21 #if defined(THREAD_DUMMY_IMPL) 23 #include "threadDummyImpl.h" 24 typedef ThreadDummyImpl ThreadImpl;
26 #elif defined(THREAD_SIMPLE_IMPL) 28 #include "threadSimpleImpl.h" 29 typedef ThreadSimpleImpl ThreadImpl;
31 #elif defined(THREAD_WIN32_IMPL) 33 #include "threadWin32Impl.h" 34 typedef ThreadWin32Impl ThreadImpl;
36 #elif defined(THREAD_POSIX_IMPL) 38 #include "threadPosixImpl.h" 39 typedef ThreadPosixImpl ThreadImpl;