From e1d4257bed8d2cff54c82b3d538769f9b475cd01 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 5 Jun 2007 01:05:33 +0000 Subject: [PATCH] remove old interfaces --- panda/src/pipeline/threadDummyImpl.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/panda/src/pipeline/threadDummyImpl.h b/panda/src/pipeline/threadDummyImpl.h index ddfb566690..c32ddfbe34 100644 --- a/panda/src/pipeline/threadDummyImpl.h +++ b/panda/src/pipeline/threadDummyImpl.h @@ -29,12 +29,6 @@ class Thread; -// The Irix system headers may define this as a macro. Get it out of -// the way. -#ifdef atomic_set -#undef atomic_set -#endif - //////////////////////////////////////////////////////////////////// // Class : ThreadDummyImpl // Description : A fake thread implementation for single-threaded @@ -56,10 +50,6 @@ public: INLINE static void bind_thread(Thread *thread); INLINE static bool is_threading_supported(); INLINE static void sleep(double seconds); - - INLINE int atomic_inc(int &var); - INLINE int atomic_dec(int &var); - INLINE int atomic_set(int &var, int new_value); }; #include "threadDummyImpl.I"