From ef9dbf80c1534ef8ec5ee30bcb068926425cec33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 13 Apr 2010 13:36:53 +0000 Subject: [PATCH] * Cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36218 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/support/Locker.h | 55 +++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/headers/os/support/Locker.h b/headers/os/support/Locker.h index b6605d0924..5816baefb7 100644 --- a/headers/os/support/Locker.h +++ b/headers/os/support/Locker.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2007, Haiku, Inc. All Rights Reserved. + * Copyright 2001-2010, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. */ #ifndef _LOCKER_H @@ -10,36 +10,39 @@ class BLocker { - public: - BLocker(); - BLocker(const char* name); - BLocker(bool benaphoreStyle); - BLocker(const char* name, bool benaphoreStyle); - virtual ~BLocker(); +public: + BLocker(); + BLocker(const char* name); + BLocker(bool benaphoreStyle); + BLocker(const char* name, bool benaphoreStyle); + virtual ~BLocker(); - status_t InitCheck() const; + status_t InitCheck() const; - bool Lock(void); - status_t LockWithTimeout(bigtime_t timeout); - void Unlock(void); + bool Lock(); + status_t LockWithTimeout(bigtime_t timeout); + void Unlock(); - thread_id LockingThread(void) const; - bool IsLocked(void) const; - int32 CountLocks(void) const; - int32 CountLockRequests(void) const; - sem_id Sem(void) const; + thread_id LockingThread() const; + bool IsLocked() const; + int32 CountLocks() const; + int32 CountLockRequests() const; + sem_id Sem() const; - private: - BLocker(const char *name, bool benaphoreStyle, bool); - void InitLocker(const char *name, bool benaphore_style); - bool AcquireLock(bigtime_t timeout, status_t *error); +private: + BLocker(const char* name, bool benaphoreStyle, + bool _ignored); + void InitLocker(const char* name, + bool benaphoreStyle); + bool AcquireLock(bigtime_t timeout, status_t* error); - int32 fBenaphoreCount; - sem_id fSemaphoreID; - thread_id fLockOwner; - int32 fRecursiveCount; + int32 fBenaphoreCount; + sem_id fSemaphoreID; + thread_id fLockOwner; + int32 fRecursiveCount; - int32 _reserved[4]; + int32 _reserved[4]; }; -#endif // _LOCKER_H + +#endif // _LOCKER_H