hkWin32CriticalSection.inl
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. //
  9. // Win32
  10. //
  11. inline hkCriticalSection::~hkCriticalSection()
  12. {
  13. DeleteCriticalSection(&m_section );
  14. }
  15. inline void hkCriticalSection::setTimersEnabled()
  16. {
  17. #ifdef HK_TIME_CRITICAL_SECTION_LOCKS
  18. HK_THREAD_LOCAL_SET(hkCriticalSection__m_timeLocks, 1);
  19. #endif
  20. }
  21. inline void hkCriticalSection::setTimersDisabled()
  22. {
  23. #ifdef HK_TIME_CRITICAL_SECTION_LOCKS
  24. HK_THREAD_LOCAL_SET(hkCriticalSection__m_timeLocks, 0);
  25. #endif
  26. }
  27. #ifndef HK_TIME_CRITICAL_SECTION_LOCKS
  28. inline void hkCriticalSection::enter()
  29. {
  30. EnterCriticalSection(&m_section );
  31. }
  32. inline void hkCriticalSection::leave()
  33. {
  34. LeaveCriticalSection(&m_section );
  35. }
  36. #else // HK_TIME_CRITICAL_SECTION_LOCKS
  37. #if defined HK_PLATFORM_SIM
  38. #include <Common/SpuSimulator/hkSpuSimulator.h>
  39. #endif
  40. inline void hkCriticalSection::leave()
  41. {
  42. LeaveCriticalSection(&m_section );
  43. }
  44. #endif // HK_TIME_CRITICAL_SECTION_LOCKS
  45. hkUint32 HK_CALL hkCriticalSection::atomicExchangeAdd(hkUint32* var, int increment)
  46. {
  47. return InterlockedExchangeAdd( (LONG*)var, increment);
  48. }
  49. /*
  50. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  51. * Confidential Information of Havok.  (C) Copyright 1999-2009
  52. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  53. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  54. * rights, and intellectual property rights in the Havok software remain in
  55. * Havok and/or its suppliers.
  56. * Use of this software for evaluation purposes is subject to and indicates
  57. * acceptance of the End User licence Agreement for this product. A copy of
  58. * the license is included with this software and is also available at www.havok.com/tryhavok.
  59. */