From b390ff9313a14148581f6b429c0b93fe88de9976 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 9 Aug 2002 23:01:30 +0000 Subject: [PATCH] oops, PANDAEXPRESS instead of PANDA --- panda/src/express/atomicAdjust.h | 2 +- panda/src/express/atomicAdjustDummyImpl.h | 2 +- panda/src/express/atomicAdjustNsprImpl.h | 2 +- panda/src/express/mutex.h | 2 +- panda/src/express/mutexDummyImpl.h | 2 +- panda/src/express/mutexNsprImpl.h | 2 +- panda/src/express/thread.h | 2 +- panda/src/express/threadDummyImpl.h | 2 +- panda/src/express/threadNsprImpl.h | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/panda/src/express/atomicAdjust.h b/panda/src/express/atomicAdjust.h index 329ef6b06e..cf9037b0bc 100644 --- a/panda/src/express/atomicAdjust.h +++ b/panda/src/express/atomicAdjust.h @@ -29,7 +29,7 @@ // others to guarantee that a multibyte value is changed // in one atomic operation. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA AtomicAdjust { +class EXPCL_PANDAEXPRESS AtomicAdjust { public: INLINE static int inc(int &var); INLINE static int dec(int &var); diff --git a/panda/src/express/atomicAdjustDummyImpl.h b/panda/src/express/atomicAdjustDummyImpl.h index c6756aa57f..0ebbe4a6f3 100644 --- a/panda/src/express/atomicAdjustDummyImpl.h +++ b/panda/src/express/atomicAdjustDummyImpl.h @@ -31,7 +31,7 @@ // systems that don't require multiprogramming, and // therefore don't require special atomic operations. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA AtomicAdjustDummyImpl { +class EXPCL_PANDAEXPRESS AtomicAdjustDummyImpl { public: INLINE static int inc(int &var); INLINE static int dec(int &var); diff --git a/panda/src/express/atomicAdjustNsprImpl.h b/panda/src/express/atomicAdjustNsprImpl.h index 67c9e457ef..ec9f122941 100644 --- a/panda/src/express/atomicAdjustNsprImpl.h +++ b/panda/src/express/atomicAdjustNsprImpl.h @@ -32,7 +32,7 @@ // Class : AtomicAdjustNsprImpl // Description : Uses NSPR to implement atomic adjustments. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA AtomicAdjustNsprImpl { +class EXPCL_PANDAEXPRESS AtomicAdjustNsprImpl { public: INLINE static int inc(int &var); INLINE static int dec(int &var); diff --git a/panda/src/express/mutex.h b/panda/src/express/mutex.h index ed1fc3467e..9d55110ea3 100644 --- a/panda/src/express/mutex.h +++ b/panda/src/express/mutex.h @@ -30,7 +30,7 @@ // other threads trying to grab the mutex will block // until the holding thread releases it. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA Mutex { +class EXPCL_PANDAEXPRESS Mutex { public: INLINE Mutex(); INLINE ~Mutex(); diff --git a/panda/src/express/mutexDummyImpl.h b/panda/src/express/mutexDummyImpl.h index dd728bbf58..439c78161d 100644 --- a/panda/src/express/mutexDummyImpl.h +++ b/panda/src/express/mutexDummyImpl.h @@ -32,7 +32,7 @@ // control. This does nothing but assert that the same // process does not try to grab the mutex twice. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA MutexDummyImpl { +class EXPCL_PANDAEXPRESS MutexDummyImpl { public: INLINE MutexDummyImpl(); INLINE ~MutexDummyImpl(); diff --git a/panda/src/express/mutexNsprImpl.h b/panda/src/express/mutexNsprImpl.h index 845ebe0c04..cd254c5e8b 100644 --- a/panda/src/express/mutexNsprImpl.h +++ b/panda/src/express/mutexNsprImpl.h @@ -32,7 +32,7 @@ // Class : MutexNsprImpl // Description : Uses NSPR to implement a mutex. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA MutexNsprImpl { +class EXPCL_PANDAEXPRESS MutexNsprImpl { public: INLINE MutexNsprImpl(); INLINE ~MutexNsprImpl(); diff --git a/panda/src/express/thread.h b/panda/src/express/thread.h index 6715e49b6b..cb46863e81 100644 --- a/panda/src/express/thread.h +++ b/panda/src/express/thread.h @@ -37,7 +37,7 @@ // will automatically be destructed if no other pointers // are referencing it. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA Thread : public ReferenceCount { +class EXPCL_PANDAEXPRESS Thread : public ReferenceCount { public: INLINE Thread(const string &name); virtual ~Thread(); diff --git a/panda/src/express/threadDummyImpl.h b/panda/src/express/threadDummyImpl.h index 87fd5e66d7..15348d61e8 100644 --- a/panda/src/express/threadDummyImpl.h +++ b/panda/src/express/threadDummyImpl.h @@ -38,7 +38,7 @@ class Thread; // applications. This simply fails whenever you try to // start a thread. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA ThreadDummyImpl { +class EXPCL_PANDAEXPRESS ThreadDummyImpl { public: INLINE ThreadDummyImpl(Thread *parent_obj); INLINE ~ThreadDummyImpl(); diff --git a/panda/src/express/threadNsprImpl.h b/panda/src/express/threadNsprImpl.h index fc9902a5d4..6f897d8166 100644 --- a/panda/src/express/threadNsprImpl.h +++ b/panda/src/express/threadNsprImpl.h @@ -37,7 +37,7 @@ class Thread; // Class : ThreadNsprImpl // Description : Uses NSPR to implement a thread. //////////////////////////////////////////////////////////////////// -class EXPCL_PANDA ThreadNsprImpl { +class EXPCL_PANDAEXPRESS ThreadNsprImpl { public: INLINE ThreadNsprImpl(Thread *parent_obj); INLINE ~ThreadNsprImpl();