hkThread.h
上传用户: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. #ifndef HKBASE_HK_THREAD_H
  9. #define HKBASE_HK_THREAD_H
  10. /// A platform independent wrapper for a thread
  11. class hkThread
  12. {
  13. public:
  14. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE, hkThread);
  15. typedef void* (HK_CALL *StartFunction)(void*);
  16. hkThread();
  17. ~hkThread();
  18. // On Win32 and Xbox360, a stack size of 0 means the thread defaults to the executable's stack size
  19. // On PLAYSTATION(R)3, we explicitly set the stack size to 256K
  20. // On other platforms (e.g. posix), this is ignored
  21. enum {
  22. #ifdef HK_PLATFORM_PS3_PPU
  23. HK_THREAD_DEFAULT_STACKSIZE = 0x40000,
  24. #else
  25. HK_THREAD_DEFAULT_STACKSIZE = 0,
  26. #endif
  27. };
  28. hkResult startThread( StartFunction f, void*, const char* name, int threadStackSize = HK_THREAD_DEFAULT_STACKSIZE );
  29. void stopThread();
  30. enum Status
  31. {
  32. THREAD_TERMINATED,
  33. THREAD_RUNNING,
  34. THREAD_NOT_STARTED
  35. };
  36. Status getStatus();
  37. hkUint64 getChildThreadId();
  38. void* getHandle();
  39. /// returns the id of the calling thread 
  40. static hkUint64 HK_CALL getMyThreadId();
  41. protected:
  42. void* m_thread;
  43. hkUint64 m_threadId;
  44. };
  45. #if defined (HK_PLATFORM_PS3_SPU)
  46. # include <Common/Base/Thread/Thread/Empty/hkEmptyThread.inl>
  47. #endif
  48. #endif // HKBASE_HK_THREAD_H
  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. */