| 236 | } |
| 237 | |
| 238 | static void heap_thread_free_large() { |
| 239 | for (int i = 0; i < 100; i++) { |
| 240 | shared_p = mi_malloc_aligned(2 * 1024 * 1024 + 1, 8); |
| 241 | auto t1 = std::thread(heap_thread_free_large_worker); |
| 242 | t1.join(); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | static void heap_thread_free_huge_worker() { |
| 247 | mi_free(shared_p); |
nothing calls this directly
no test coverage detected