mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
oops, PANDAEXPRESS instead of PANDA
This commit is contained in:
parent
58b5397d87
commit
b390ff9313
@ -29,7 +29,7 @@
|
|||||||
// others to guarantee that a multibyte value is changed
|
// others to guarantee that a multibyte value is changed
|
||||||
// in one atomic operation.
|
// in one atomic operation.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA AtomicAdjust {
|
class EXPCL_PANDAEXPRESS AtomicAdjust {
|
||||||
public:
|
public:
|
||||||
INLINE static int inc(int &var);
|
INLINE static int inc(int &var);
|
||||||
INLINE static int dec(int &var);
|
INLINE static int dec(int &var);
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
// systems that don't require multiprogramming, and
|
// systems that don't require multiprogramming, and
|
||||||
// therefore don't require special atomic operations.
|
// therefore don't require special atomic operations.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA AtomicAdjustDummyImpl {
|
class EXPCL_PANDAEXPRESS AtomicAdjustDummyImpl {
|
||||||
public:
|
public:
|
||||||
INLINE static int inc(int &var);
|
INLINE static int inc(int &var);
|
||||||
INLINE static int dec(int &var);
|
INLINE static int dec(int &var);
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
// Class : AtomicAdjustNsprImpl
|
// Class : AtomicAdjustNsprImpl
|
||||||
// Description : Uses NSPR to implement atomic adjustments.
|
// Description : Uses NSPR to implement atomic adjustments.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA AtomicAdjustNsprImpl {
|
class EXPCL_PANDAEXPRESS AtomicAdjustNsprImpl {
|
||||||
public:
|
public:
|
||||||
INLINE static int inc(int &var);
|
INLINE static int inc(int &var);
|
||||||
INLINE static int dec(int &var);
|
INLINE static int dec(int &var);
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
// other threads trying to grab the mutex will block
|
// other threads trying to grab the mutex will block
|
||||||
// until the holding thread releases it.
|
// until the holding thread releases it.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA Mutex {
|
class EXPCL_PANDAEXPRESS Mutex {
|
||||||
public:
|
public:
|
||||||
INLINE Mutex();
|
INLINE Mutex();
|
||||||
INLINE ~Mutex();
|
INLINE ~Mutex();
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
// control. This does nothing but assert that the same
|
// control. This does nothing but assert that the same
|
||||||
// process does not try to grab the mutex twice.
|
// process does not try to grab the mutex twice.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA MutexDummyImpl {
|
class EXPCL_PANDAEXPRESS MutexDummyImpl {
|
||||||
public:
|
public:
|
||||||
INLINE MutexDummyImpl();
|
INLINE MutexDummyImpl();
|
||||||
INLINE ~MutexDummyImpl();
|
INLINE ~MutexDummyImpl();
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
// Class : MutexNsprImpl
|
// Class : MutexNsprImpl
|
||||||
// Description : Uses NSPR to implement a mutex.
|
// Description : Uses NSPR to implement a mutex.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA MutexNsprImpl {
|
class EXPCL_PANDAEXPRESS MutexNsprImpl {
|
||||||
public:
|
public:
|
||||||
INLINE MutexNsprImpl();
|
INLINE MutexNsprImpl();
|
||||||
INLINE ~MutexNsprImpl();
|
INLINE ~MutexNsprImpl();
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
// will automatically be destructed if no other pointers
|
// will automatically be destructed if no other pointers
|
||||||
// are referencing it.
|
// are referencing it.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA Thread : public ReferenceCount {
|
class EXPCL_PANDAEXPRESS Thread : public ReferenceCount {
|
||||||
public:
|
public:
|
||||||
INLINE Thread(const string &name);
|
INLINE Thread(const string &name);
|
||||||
virtual ~Thread();
|
virtual ~Thread();
|
||||||
|
@ -38,7 +38,7 @@ class Thread;
|
|||||||
// applications. This simply fails whenever you try to
|
// applications. This simply fails whenever you try to
|
||||||
// start a thread.
|
// start a thread.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA ThreadDummyImpl {
|
class EXPCL_PANDAEXPRESS ThreadDummyImpl {
|
||||||
public:
|
public:
|
||||||
INLINE ThreadDummyImpl(Thread *parent_obj);
|
INLINE ThreadDummyImpl(Thread *parent_obj);
|
||||||
INLINE ~ThreadDummyImpl();
|
INLINE ~ThreadDummyImpl();
|
||||||
|
@ -37,7 +37,7 @@ class Thread;
|
|||||||
// Class : ThreadNsprImpl
|
// Class : ThreadNsprImpl
|
||||||
// Description : Uses NSPR to implement a thread.
|
// Description : Uses NSPR to implement a thread.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA ThreadNsprImpl {
|
class EXPCL_PANDAEXPRESS ThreadNsprImpl {
|
||||||
public:
|
public:
|
||||||
INLINE ThreadNsprImpl(Thread *parent_obj);
|
INLINE ThreadNsprImpl(Thread *parent_obj);
|
||||||
INLINE ~ThreadNsprImpl();
|
INLINE ~ThreadNsprImpl();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user