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

其他游戏

开发平台:

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 HK_UTILITIES2_MULTITHREADING_UTIL_NEW_H
  9. #define HK_UTILITIES2_MULTITHREADING_UTIL_NEW_H
  10. #include <Common/Base/Thread/Job/ThreadPool/hkJobThreadPool.h>
  11. #include <Common/Base/Thread/Semaphore/hkSemaphoreBusyWait.h>
  12. class hkSpuUtil;
  13. class hkJobQueue;
  14. struct hkSpuJobThreadPoolCinfo
  15. {
  16. hkSpuJobThreadPoolCinfo();
  17. hkSpuUtil* m_spuUtil;
  18. int m_numSpus;
  19. /// Defaults to 1024*100 (100K)
  20. int m_perSpuMontiorBufferSize;
  21. const char* m_tasksetName;
  22. };
  23. class hkSpuJobThreadPool : public hkJobThreadPool
  24. {
  25. public:
  26. hkSpuJobThreadPool( hkSpuJobThreadPoolCinfo& cinfo );
  27. ~hkSpuJobThreadPool();
  28. virtual void processAllJobs( hkJobQueue* queue, hkJobType firstJobType = HK_JOB_TYPE_MAX );
  29. virtual void waitForCompletion( );
  30. virtual bool isProcessing();
  31. virtual void appendTimerData( hkArray<hkTimerData>& timerData );
  32. virtual void clearTimerData();
  33. virtual int getNumThreads();
  34. virtual void setNumThreads( int numThreads );
  35. hkSpuUtil* getSpuUtil() { return m_spuUtil; }
  36. class hkSpuMonitorCache* getMonitorCache(int i) { return m_monitorCaches[i]; }
  37. enum { MAX_NUM_SPUS = 6 };
  38. protected:
  39. hkSpuUtil* m_spuUtil;
  40. int m_maxNumSpus;
  41. int m_numSpus;
  42. bool m_isRunning;
  43. const char* m_tasksetName;
  44. hkSemaphoreBusyWait* m_taskCompletionSemaphore;
  45. hkJobQueue* m_jobQueue;
  46. hkSpuMonitorCache* m_monitorCaches[MAX_NUM_SPUS];
  47. };
  48. #endif // HK_UTILITIES2_MULTITHREADING_UTIL_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. */