mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
33 lines
542 B
C++
33 lines
542 B
C++
// ======================================================================
|
|
//
|
|
// Mutex.cpp
|
|
// Acy Stapp
|
|
//
|
|
// Copyright 6/19/2001 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#include "sharedFoundation/FirstSharedFoundation.h"
|
|
#include "sharedSynchronization/Mutex.h"
|
|
|
|
Mutex::Mutex()
|
|
{
|
|
pthread_mutex_init(&mutex, 0);
|
|
}
|
|
|
|
Mutex::~Mutex()
|
|
{
|
|
pthread_mutex_destroy(&mutex);
|
|
}
|
|
|
|
void Mutex::enter()
|
|
{
|
|
pthread_mutex_lock(&mutex);
|
|
}
|
|
|
|
void Mutex::leave()
|
|
{
|
|
pthread_mutex_unlock(&mutex);
|
|
}
|
|
|