Home
last modified time | relevance | path

Searched refs:cache_unext (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libumem/common/
H A Dumem_fork.c167 ASSERT(cp->cache_unext == NULL && in umem_do_release()
171 cp->cache_unext = cnext = &umem_null_cache; in umem_do_release()
175 cprev->cache_unext = cp; in umem_do_release()
H A Dumem.c953 if (cp->cache_unext != NULL) { in umem_add_update_unlocked()
959 cp->cache_unext = cnext = &umem_null_cache; in umem_add_update_unlocked()
962 cprev->cache_unext = cp; in umem_add_update_unlocked()
995 ASSERT(cp->cache_unext == NULL); in umem_remove_updates()
1014 if (cp->cache_unext != NULL) { in umem_remove_updates()
1015 cp->cache_uprev->cache_unext = cp->cache_unext; in umem_remove_updates()
1016 cp->cache_unext->cache_uprev = cp->cache_uprev; in umem_remove_updates()
1017 cp->cache_uprev = cp->cache_unext = NULL; in umem_remove_updates()
2521 umem_cache_t *cp = umem_null_cache.cache_unext; in umem_process_updates()
2523 cp->cache_uprev->cache_unext = cp->cache_unext; in umem_process_updates()
[all …]
H A Dumem_update_thread.c103 if (umem_null_cache.cache_unext == &umem_null_cache) { in umem_update_thread()
H A Dumem_impl.h298 umem_cache_t *cache_unext; /* next in update list */ member