source: xplcommon/src/xplcommon/Thread.h@ 0:35ba6f10e28f

Last change on this file since 0:35ba6f10e28f was 0:35ba6f10e28f, checked in by István Váradi <ivaradi@…>, 11 years ago

Initial revision, thread handling implemented

File size: 2.1 KB
Line 
1// Copyright (c) 2012 by István Váradi
2
3// This file is part of libxplcommon, a common utility library for
4// development related to X-Plane
5
6// Copyright (c) 2013, István Váradi
7// All rights reserved.
8
9// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions are met:
11
12// 1. Redistributions of source code must retain the above copyright notice, this
13// list of conditions and the following disclaimer.
14// 2. Redistributions in binary form must reproduce the above copyright notice,
15// this list of conditions and the following disclaimer in the documentation
16// and/or other materials provided with the distribution.
17
18// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
22// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29// The views and conclusions contained in the software and documentation are those
30// of the authors and should not be interpreted as representing official policies,
31// either expressed or implied, of the FreeBSD Project.
32
33#ifndef XPLCOMMON_THREAD_H
34#define XPLCOMMON_THREAD_H
35//------------------------------------------------------------------------------
36
37#include "config.h"
38
39#ifdef HAVE_WINDOWS_H
40
41#include "Win32Thread.h"
42
43#else
44
45#include "POSIXThread.h"
46
47#endif
48
49//------------------------------------------------------------------------------
50#endif // XPLCOMMON_THREAD_H
51
52// Local Variables:
53// mode: C++
54// c-basic-offset: 4
55// indent-tabs-mode: nil
56// End:
Note: See TracBrowser for help on using the repository browser.