You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
2.8 KiB
C
125 lines
2.8 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkMutexLock.h
|
||
|
|
|
||
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
|
All rights reserved.
|
||
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
|
||
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
/**
|
||
|
|
* @class vtkMutexLock
|
||
|
|
* @brief mutual exclusion locking class
|
||
|
|
*
|
||
|
|
* vtkMutexLock allows the locking of variables which are accessed
|
||
|
|
* through different threads. This header file also defines
|
||
|
|
* vtkSimpleMutexLock which is not a subclass of vtkObject.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkMutexLock_h
|
||
|
|
#define vtkMutexLock_h
|
||
|
|
|
||
|
|
|
||
|
|
#include "vtkCommonCoreModule.h" // For export macro
|
||
|
|
#include "vtkObject.h"
|
||
|
|
|
||
|
|
#ifdef VTK_USE_SPROC
|
||
|
|
#include <abi_mutex.h> // Needed for SPROC implementation of mutex
|
||
|
|
typedef abilock_t vtkMutexType;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if defined(VTK_USE_PTHREADS) || defined(VTK_HP_PTHREADS)
|
||
|
|
#include <pthread.h> // Needed for PTHREAD implementation of mutex
|
||
|
|
typedef pthread_mutex_t vtkMutexType;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifdef VTK_USE_WIN32_THREADS
|
||
|
|
typedef vtkWindowsHANDLE vtkMutexType;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTK_USE_SPROC
|
||
|
|
#ifndef VTK_USE_PTHREADS
|
||
|
|
#ifndef VTK_USE_WIN32_THREADS
|
||
|
|
typedef int vtkMutexType;
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
// Mutex lock that is not a vtkObject.
|
||
|
|
class VTKCOMMONCORE_EXPORT vtkSimpleMutexLock
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
// left public purposely
|
||
|
|
vtkSimpleMutexLock();
|
||
|
|
virtual ~vtkSimpleMutexLock();
|
||
|
|
|
||
|
|
static vtkSimpleMutexLock *New();
|
||
|
|
|
||
|
|
void Delete() {delete this;}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Lock the vtkMutexLock
|
||
|
|
*/
|
||
|
|
void Lock( void );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Unlock the vtkMutexLock
|
||
|
|
*/
|
||
|
|
void Unlock( void );
|
||
|
|
|
||
|
|
protected:
|
||
|
|
friend class vtkSimpleConditionVariable;
|
||
|
|
vtkMutexType MutexLock;
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkSimpleMutexLock(const vtkSimpleMutexLock& other) VTK_DELETE_FUNCTION;
|
||
|
|
vtkSimpleMutexLock& operator=(const vtkSimpleMutexLock& rhs) VTK_DELETE_FUNCTION;
|
||
|
|
};
|
||
|
|
|
||
|
|
class VTKCOMMONCORE_EXPORT vtkMutexLock : public vtkObject
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static vtkMutexLock *New();
|
||
|
|
|
||
|
|
vtkTypeMacro(vtkMutexLock,vtkObject);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Lock the vtkMutexLock
|
||
|
|
*/
|
||
|
|
void Lock( void );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Unlock the vtkMutexLock
|
||
|
|
*/
|
||
|
|
void Unlock( void );
|
||
|
|
|
||
|
|
protected:
|
||
|
|
|
||
|
|
friend class vtkConditionVariable; // needs to get at SimpleMutexLock.
|
||
|
|
|
||
|
|
vtkSimpleMutexLock SimpleMutexLock;
|
||
|
|
vtkMutexLock() {}
|
||
|
|
private:
|
||
|
|
vtkMutexLock(const vtkMutexLock&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkMutexLock&) VTK_DELETE_FUNCTION;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
inline void vtkMutexLock::Lock( void )
|
||
|
|
{
|
||
|
|
this->SimpleMutexLock.Lock();
|
||
|
|
}
|
||
|
|
|
||
|
|
inline void vtkMutexLock::Unlock( void )
|
||
|
|
{
|
||
|
|
this->SimpleMutexLock.Unlock();
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|