mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 23:53:26 +02:00
correct reference to mutex to lock in Node
This commit is contained in:
parent
94b6bfccf6
commit
e3d1e5db5d
1 changed files with 2 additions and 2 deletions
|
@ -66,8 +66,8 @@ public:
|
|||
int getPingMs() const { return _pingMs; };
|
||||
void setPingMs(int pingMs) { _pingMs = pingMs; };
|
||||
|
||||
void lock() { pthread_mutex_lock(&mutex); }
|
||||
void unlock() { pthread_mutex_unlock(&mutex); }
|
||||
void lock() { pthread_mutex_lock(&_mutex); }
|
||||
void unlock() { pthread_mutex_unlock(&_mutex); }
|
||||
|
||||
static void printLog(Node const&);
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue