Searched refs:M_PROC (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dmalloc.h134 #define M_PROC 41 /* Proc structures */ macro
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_fork.c1065 FREE_ZONE(p, sizeof *p, M_PROC);
1094 MALLOC_ZONE(child_proc, proc_t , sizeof *child_proc, M_PROC, M_WAITOK);
1096 printf("forkproc: M_PROC zone exhausted\n");
1106 FREE_ZONE(child_proc, sizeof *child_proc, M_PROC);
1115 FREE_ZONE(child_proc, sizeof *child_proc, M_PROC);
1125 FREE_ZONE(child_proc, sizeof *child_proc, M_PROC);
H A Dkern_proc.c196 pidhashtbl = hashinit(maxproc / 4, M_PROC, &pidhash);
197 pgrphashtbl = hashinit(maxproc / 4, M_PROC, &pgrphash);
198 sesshashtbl = hashinit(maxproc / 4, M_PROC, &sesshash);
199 uihashtbl = hashinit(maxproc / 16, M_PROC, &uihash);
236 FREE_ZONE(uip, sizeof(*uip), M_PROC);
258 MALLOC_ZONE(newuip, struct uidinfo *, sizeof(*uip), M_PROC, M_WAITOK);
260 panic("chgproccnt: M_PROC zone depleted");
264 FREE_ZONE(newuip, sizeof(*uip), M_PROC);
H A Dpthread_support.c2602 pth_glob_hashtbl = hashinit(PTH_HASHSIZE * 4, M_PROC, &pthhash);
2630 p->p_pthhash = hashinit(PTH_HASHSIZE, M_PROC, &pthhash);
2706 FREE(hashptr, M_PROC);
H A Dkern_exit.c1097 FREE_ZONE(child, sizeof *child, M_PROC);

Completed in 93 milliseconds