Executed on very first call through FreeHandler
| 148 | |
| 149 | //! Executed on very first call through FreeHandler |
| 150 | static void DummyFree( void * ptr ) { |
| 151 | initialize_cache_aligned_allocator(); |
| 152 | __TBB_ASSERT( FreeHandler!=&DummyFree, NULL ); |
| 153 | (*FreeHandler)( ptr ); |
| 154 | } |
| 155 | |
| 156 | //! Executed on very first call through padded_allocate_handler |
| 157 | static void* dummy_padded_allocate( size_t bytes, size_t alignment ) { |
nothing calls this directly
no test coverage detected