Example #1
0
void
chunk_dss_prefork(void)
{

	if (config_dss)
		malloc_mutex_prefork(&dss_mtx);
}
Example #2
0
void
chunk_dss_prefork(void)
{

	if (have_dss)
		malloc_mutex_prefork(&dss_mtx);
}
Example #3
0
void
huge_prefork(void)
{

	malloc_mutex_prefork(&huge_mtx);
}
Example #4
0
void
rtree_prefork(rtree_t *rtree)
{

	malloc_mutex_prefork(&rtree->mutex);
}
Example #5
0
void
base_prefork(void)
{

	malloc_mutex_prefork(&base_mtx);
}
Example #6
0
void
base_prefork(tsdn_t *tsdn)
{

	malloc_mutex_prefork(tsdn, &base_mtx);
}
Example #7
0
void
huge_prefork(pool_t *pool)
{

	malloc_mutex_prefork(&pool->huge_mtx);
}
Example #8
0
void
ctl_prefork(void)
{

	malloc_mutex_prefork(&ctl_mtx);
}