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