brought back functionality from previous builds but now cross-platform
This commit is contained in:
22
tier1/utlmutex.cpp
Normal file
22
tier1/utlmutex.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "tier1/utlmutex.h"
|
||||
#include "pthread.h"
|
||||
|
||||
CUtlLock::CUtlLock()
|
||||
{
|
||||
pthread_mutex_init(&m_lock);
|
||||
};
|
||||
|
||||
CUtlLock::~CUtlLock()
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
void CUtlLock::Lock()
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
void CUtlLock::Unlock()
|
||||
{
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user