Panda3D
Loading...
Searching...
No Matches
panda
src
pipeline
lightMutex.I
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 lightMutex.I
10
* @author drose
11
* @date 2008-10-08
12
*/
13
14
/**
15
*
16
*/
17
INLINE
LightMutex
::
18
#ifdef DEBUG_THREADS
19
LightMutex
() : MutexDebug(
std
::string(), false, true)
20
#else
21
LightMutex
()
22
#endif
// DEBUG_THREADS
23
{
24
}
25
26
/**
27
*
28
*/
29
INLINE
LightMutex
::
30
#ifdef DEBUG_THREADS
31
LightMutex
(
const
char
*name) : MutexDebug(
std
::string(name), false, true)
32
#else
33
LightMutex
(const char *)
34
#endif
// DEBUG_THREADS
35
{
36
}
37
38
/**
39
*
40
*/
41
INLINE
LightMutex
::
42
#ifdef DEBUG_THREADS
43
LightMutex
(
const
std::string &name) : MutexDebug(name, false, true)
44
#else
45
LightMutex
(const
std
::string &)
46
#endif
// DEBUG_THREADS
47
{
48
}
LightMutex
This is a standard, non-reentrant mutex, similar to the Mutex class.
Definition
lightMutex.h:41
std
STL namespace.
Generated on Mon Jan 8 2024 17:18:44 for Panda3D by
1.10.0