Panda3D
Loading...
Searching...
No Matches
threadImpl.h
Go to the documentation of this file.
1/**
2 * PANDA 3D SOFTWARE
3 * Copyright (c) Carnegie Mellon University. All rights reserved.
4 *
5 * All use of this software is subject to the terms of the revised BSD
6 * license. You should have received a copy of this license along
7 * with this source code in a file named "LICENSE."
8 *
9 * @file threadImpl.h
10 * @author drose
11 * @date 2002-08-09
12 */
13
14#ifndef THREADIMPL_H
15#define THREADIMPL_H
16
17#include "pandabase.h"
18#include "selectThreadImpl.h"
19
20#if defined(THREAD_DUMMY_IMPL)
21
22#include "threadDummyImpl.h"
23typedef ThreadDummyImpl ThreadImpl;
24
25#elif defined(THREAD_SIMPLE_IMPL)
26
27#include "threadSimpleImpl.h"
28typedef ThreadSimpleImpl ThreadImpl;
29
30#elif defined(THREAD_WIN32_IMPL)
31
32#include "threadWin32Impl.h"
33typedef ThreadWin32Impl ThreadImpl;
34
35#elif defined(THREAD_POSIX_IMPL)
36
37#include "threadPosixImpl.h"
38typedef ThreadPosixImpl ThreadImpl;
39
40#endif
41
42#endif
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.