| 42 | }; |
| 43 | |
| 44 | inline u32 ComputeCallstackHash( const std::vector< CProfileItem * > & items ) |
| 45 | { |
| 46 | if( items.empty() ) |
| 47 | return 0; |
| 48 | |
| 49 | return murmur2_hash( reinterpret_cast< const u8 * >( &items[0] ), items.size() * sizeof( CProfileItem * ), 0 ); |
| 50 | } |
| 51 | |
| 52 | class CProfileCallstack |
| 53 | { |
no test coverage detected