00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _SK_RT_MUTEX_H_
00012 #define _SK_RT_MUTEX_H_
00013
00014 #include <sk/rt/thread/AbstractLock.h>
00015
00016 namespace sk {
00017 namespace rt {
00018 class Mutex
00019 : public thread::AbstractLock
00020 {
00021 public:
00022 Mutex(bool ownership = true);
00023 virtual ~Mutex();
00024
00025 bool isLocked() const;
00026
00027
00028 const sk::util::Class getClass() const;
00029
00030 private:
00031 Mutex(const Mutex& other);
00032 Mutex& operator = (const Mutex& other);
00033 };
00034 }
00035 }
00036
00037 #endif