Open Dynamics Engine
ode/src/threading_impl.h
1 /*************************************************************************
2  * *
3  * Open Dynamics Engine, Copyright (C) 2001-2003 Russell L. Smith. *
4  * All rights reserved. Email: russ@q12.org Web: www.q12.org *
5  * *
6  * Threading implementation private header file. *
7  * Copyright (C) 2011-2012 Oleh Derevenko. All rights reserved. *
8  * e-mail: odar@eleks.com (change all "a" to "e") *
9  * *
10  * This library is free software; you can redistribute it and/or *
11  * modify it under the terms of EITHER: *
12  * (1) The GNU Lesser General Public License as published by the Free *
13  * Software Foundation; either version 2.1 of the License, or (at *
14  * your option) any later version. The text of the GNU Lesser *
15  * General Public License is included with this library in the *
16  * file LICENSE.TXT. *
17  * (2) The BSD-style license that is included with this library in *
18  * the file LICENSE-BSD.TXT. *
19  * *
20  * This library is distributed in the hope that it will be useful, *
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files *
23  * LICENSE.TXT and LICENSE-BSD.TXT for more details. *
24  * *
25  *************************************************************************/
26 
27 /*
28  * Threading implementation header for library private functions.
29  */
30 
31 
32 #ifndef _ODE__PRIVATE_THREADING_IMPL_H_
33 #define _ODE__PRIVATE_THREADING_IMPL_H_
34 
35 
36 #include <ode/threading.h>
37 
38 
39 // This function has been removed from public headers as there is no need for it
40 // to be accessible to outer code at this time. In future it is possible
41 // it could be published back again.
58 /*ODE_API */dThreadingImplementationID dThreadingAllocateSelfThreadedImplementation();
59 
60 
61 
62 #endif // #ifndef _ODE__PRIVATE_THREADING_IMPL_H_