diff options
Diffstat (limited to 'external/vpc/public/tier0/l2cache.h')
| -rw-r--r-- | external/vpc/public/tier0/l2cache.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/external/vpc/public/tier0/l2cache.h b/external/vpc/public/tier0/l2cache.h new file mode 100644 index 0000000..db54695 --- /dev/null +++ b/external/vpc/public/tier0/l2cache.h @@ -0,0 +1,47 @@ +//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// +#ifndef CL2CACHE_H +#define CL2CACHE_H +#ifdef _WIN32 +#pragma once +#endif + +class P4Event_BSQ_cache_reference; + +class CL2Cache +{ +public: + + CL2Cache(); + ~CL2Cache(); + + void Start( void ); + void End( void ); + + //------------------------------------------------------------------------- + // GetL2CacheMisses + //------------------------------------------------------------------------- + int GetL2CacheMisses( void ) + { + return m_iL2CacheMissCount; + } + +#ifdef DBGFLAG_VALIDATE + void Validate( CValidator &validator, tchar *pchName ); // Validate our internal structures +#endif // DBGFLAG_VALIDATE + +private: + + int m_nID; + + P4Event_BSQ_cache_reference *m_pL2CacheEvent; + int64 m_i64Start; + int64 m_i64End; + int m_iL2CacheMissCount; +}; + +#endif // CL2CACHE_H + |