| 1384 | } |
| 1385 | |
| 1386 | bool |
| 1387 | ctl_boot(void) { |
| 1388 | if (malloc_mutex_init(&ctl_mtx, "ctl", WITNESS_RANK_CTL, |
| 1389 | malloc_mutex_rank_exclusive)) { |
| 1390 | return true; |
| 1391 | } |
| 1392 | |
| 1393 | ctl_initialized = false; |
| 1394 | |
| 1395 | return false; |
| 1396 | } |
| 1397 | |
| 1398 | void |
| 1399 | ctl_prefork(tsdn_t *tsdn) { |
no test coverage detected