| 1265 | } |
| 1266 | |
| 1267 | bool |
| 1268 | ctl_boot(void) { |
| 1269 | if (malloc_mutex_init(&ctl_mtx, "ctl", WITNESS_RANK_CTL, |
| 1270 | malloc_mutex_rank_exclusive)) { |
| 1271 | return true; |
| 1272 | } |
| 1273 | |
| 1274 | ctl_initialized = false; |
| 1275 | |
| 1276 | return false; |
| 1277 | } |
| 1278 | |
| 1279 | void |
| 1280 | ctl_prefork(tsdn_t *tsdn) { |
no test coverage detected