| 64 | } |
| 65 | |
| 66 | static bool |
| 67 | tsd_data_init(tsd_t *tsd) { |
| 68 | /* |
| 69 | * We initialize the rtree context first (before the tcache), since the |
| 70 | * tcache initialization depends on it. |
| 71 | */ |
| 72 | rtree_ctx_data_init(tsd_rtree_ctxp_get_unsafe(tsd)); |
| 73 | |
| 74 | return tsd_tcache_enabled_data_init(tsd); |
| 75 | } |
| 76 | |
| 77 | static void |
| 78 | assert_tsd_data_cleanup_done(tsd_t *tsd) { |
no test coverage detected