예제 #1
0
void
chunk_dss_prefork(void)
{

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

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

	malloc_mutex_prefork(&huge_mtx);
}
예제 #4
0
파일: rtree.c 프로젝트: GlassFace/sunwell
void
rtree_prefork(rtree_t *rtree)
{

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

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

	malloc_mutex_prefork(tsdn, &base_mtx);
}
예제 #7
0
파일: huge.c 프로젝트: KaiZhang666/nvml
void
huge_prefork(pool_t *pool)
{

	malloc_mutex_prefork(&pool->huge_mtx);
}
예제 #8
0
파일: ctl.c 프로젝트: GlassFace/sunwell
void
ctl_prefork(void)
{

	malloc_mutex_prefork(&ctl_mtx);
}