summaryrefslogtreecommitdiff
path: root/src/Lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Lock.h')
-rw-r--r--src/Lock.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/Lock.h b/src/Lock.h
index 14bf1dc..04d5e15 100644
--- a/src/Lock.h
+++ b/src/Lock.h
@@ -9,7 +9,6 @@
* Douglas M. Pase - initial API and implementation *
*******************************************************************************/
-
#if !defined(Lock_h)
#define Lock_h
@@ -17,14 +16,14 @@
class Lock {
public:
- Lock();
- ~Lock();
- void lock();
- int test();
- void unlock();
+ Lock();
+ ~Lock();
+ void lock();
+ int test();
+ void unlock();
private:
- pthread_mutex_t mutex;
+ pthread_mutex_t mutex;
};
#endif