Executed on very first call through MallocHandler
| 141 | |
| 142 | //! Executed on very first call through MallocHandler |
| 143 | static void* DummyMalloc( size_t size ) { |
| 144 | initialize_cache_aligned_allocator(); |
| 145 | __TBB_ASSERT( MallocHandler!=&DummyMalloc, NULL ); |
| 146 | return (*MallocHandler)( size ); |
| 147 | } |
| 148 | |
| 149 | //! Executed on very first call through FreeHandler |
| 150 | static void DummyFree( void * ptr ) { |
nothing calls this directly
no test coverage detected