Coding style cleanups. Thanks axeld.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34462 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
a49ed9ad76
commit
af983c175d
@ -63,10 +63,10 @@ public:
|
||||
inline void NotifyAll(bool threadsLocked = false,
|
||||
status_t result = B_OK);
|
||||
|
||||
static void NotifyOne(const void* object,
|
||||
static void NotifyOne(const void* object,
|
||||
bool threadsLocked = false,
|
||||
status_t result = B_OK);
|
||||
static void NotifyAll(const void* object,
|
||||
static void NotifyAll(const void* object,
|
||||
bool threadsLocked = false,
|
||||
status_t result = B_OK);
|
||||
// (both methods) caller must ensure that
|
||||
|
@ -261,7 +261,7 @@ ConditionVariable::Wait(uint32 flags, bigtime_t timeout)
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
/*static*/ void
|
||||
ConditionVariable::NotifyOne(const void* object, bool threadsLocked,
|
||||
status_t result)
|
||||
{
|
||||
@ -275,7 +275,7 @@ ConditionVariable::NotifyOne(const void* object, bool threadsLocked,
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
/*static*/ void
|
||||
ConditionVariable::NotifyAll(const void* object,
|
||||
bool threadsLocked, status_t result)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user