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

/darwin-on-arm/xnu/bsd/kern/
H A Dposix_shm.c326 pshmhashtbl = hashinit(desiredvnodes / 8, M_SHM, &pshmhash);
456 MALLOC(pcp, struct pshmcache *, sizeof(struct pshmcache), M_SHM, M_WAITOK|M_ZERO);
462 MALLOC(new_pinfo, struct pshminfo *, sizeof(struct pshminfo), M_SHM, M_WAITOK|M_ZERO);
471 MALLOC(new_pnode, struct pshmnode *, sizeof(struct pshmnode), M_SHM, M_WAITOK|M_ZERO);
597 FREE(pcp, M_SHM);
603 FREE(new_pinfo, M_SHM);
636 FREE(pcp, M_SHM);
639 FREE(new_pnode, M_SHM);
648 FREE(new_pinfo, M_SHM);
720 M_SHM, M_WAITO
[all...]
H A Dposix_sem.c311 psemhashtbl = hashinit(posix_sem_max / 2, M_SHM, &psemhash);
436 MALLOC(pcp, struct psemcache *, sizeof(struct psemcache), M_SHM, M_WAITOK|M_ZERO);
442 MALLOC(new_pinfo, struct pseminfo *, sizeof(struct pseminfo), M_SHM, M_WAITOK|M_ZERO);
484 MALLOC(new_pnode, struct psemnode *, sizeof(struct psemnode), M_SHM, M_WAITOK|M_ZERO);
581 FREE(pcp, M_SHM);
589 FREE(new_pinfo, M_SHM);
611 FREE(pcp, M_SHM);
614 FREE(new_pnode, M_SHM);
632 FREE(new_pinfo, M_SHM);
759 FREE(pinfo,M_SHM);
[all...]
H A Dsysv_shm.c271 FREE((caddr_t) shm_handle, M_SHM);
392 MALLOC(shmmap_s, struct shmmap_state *, size, M_SHM, M_WAITOK);
756 MALLOC(shm_handle, struct shm_handle *, sizeof(struct shm_handle), M_SHM, M_WAITOK);
809 FREE((caddr_t) shm_handle, M_SHM);
914 MALLOC(shmmap_s, struct shmmap_state *, size, M_SHM, M_WAITOK);
947 FREE((caddr_t)p->vm_shm, M_SHM);
969 FREE((caddr_t)p->vm_shm, M_SHM);
990 MALLOC(shmsegs, struct shmid_kernel *, s, M_SHM, M_WAITOK);
H A Dsysv_msg.c249 msgpool = (char *)_MALLOC(msginfo.msgmax, M_SHM, M_WAITOK);
256 M_SHM, M_WAITOK);
264 M_SHM, M_WAITOK);
272 M_SHM, M_WAITOK);
315 _FREE(msgpool, M_SHM);
317 FREE(msgmaps, M_SHM);
319 FREE(msghdrs, M_SHM);
321 FREE(msqids, M_SHM);
/darwin-on-arm/xnu/bsd/sys/
H A Dmalloc.h122 #define M_SHM 29 /* SVID compatible shared memory segments */ macro

Completed in 79 milliseconds