BLocker: Make copy constructor & assignment operator private.
On suggestion of Axel.
This commit is contained in:
@@ -32,6 +32,8 @@ public:
|
|||||||
private:
|
private:
|
||||||
BLocker(const char* name, bool benaphoreStyle,
|
BLocker(const char* name, bool benaphoreStyle,
|
||||||
bool _ignored);
|
bool _ignored);
|
||||||
|
BLocker(const BLocker&);
|
||||||
|
BLocker& operator=(const BLocker&);
|
||||||
void InitLocker(const char* name,
|
void InitLocker(const char* name,
|
||||||
bool benaphoreStyle);
|
bool benaphoreStyle);
|
||||||
bool AcquireLock(bigtime_t timeout, status_t* error);
|
bool AcquireLock(bigtime_t timeout, status_t* error);
|
||||||
|
|||||||
Reference in New Issue
Block a user