Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/os/
H A Dproc.c52 pctx->free_op = free; in installpctx()
78 pctx->exit_op == exit && pctx->free_op == free && in removepctx()
84 if (pctx->free_op != NULL) in removepctx()
85 (pctx->free_op)(pctx->arg, 0); in removepctx()
156 if (pctx->free_op != NULL) in freepctx()
157 (pctx->free_op)(pctx->arg, isexec); in freepctx()
/illumos-gate/usr/src/uts/common/disp/
H A Dthread.c1037 ctx->free_op == ct->ct_free && in ctxop_find_by_tmpl()
1085 ctx->free_op = ct->ct_free; in ctxop_allocate()
1097 if (ctx->free_op != NULL) in ctxop_free()
1098 (ctx->free_op)(ctx->arg, 0); in ctxop_free()
1354 if (ctx->free_op != NULL) { in freectx()
1355 (ctx->free_op)(ctx->arg, isexec); in freectx()
1384 if (ctx->free_op != NULL) { in freectx_ctx()
1385 (ctx->free_op)(ctx->arg, 0); in freectx_ctx()
/illumos-gate/usr/src/uts/common/sys/
H A Dthread.h72 void (*free_op)(void *, int); /* function which frees the context */ member
H A Dproc.h89 void (*free_op)(void *, int); /* function which frees the context */ member