53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
// Filename: mutexWin32Impl.h
|
|
// Created by: drose (07Feb06)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef MUTEXWIN32IMPL_H
|
|
#define MUTEXWIN32IMPL_H
|
|
|
|
#include "dtoolbase.h"
|
|
#include "selectThreadImpl.h"
|
|
|
|
#ifdef WIN32_VC
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : MutexWin32Impl
|
|
// Description : Uses Windows native calls to implement a mutex.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_DTOOL MutexWin32Impl {
|
|
public:
|
|
MutexWin32Impl();
|
|
INLINE ~MutexWin32Impl();
|
|
|
|
INLINE void lock();
|
|
INLINE bool try_lock();
|
|
INLINE void release();
|
|
|
|
private:
|
|
CRITICAL_SECTION _lock;
|
|
friend class ConditionVarWin32Impl;
|
|
friend class ConditionVarFullWin32Impl;
|
|
};
|
|
|
|
#include "mutexWin32Impl.I"
|
|
|
|
#endif // WIN32_VC
|
|
|
|
#endif
|