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

/freebsd-10.2-release/sys/kern/
H A Dsysv_msg.c154 static struct msgmap *msgmaps; /* MSGSEG msgmap structures */ variable in typeref:struct:msgmap
207 msgmaps = malloc(sizeof(struct msgmap) * msginfo.msgseg, M_MSG, M_WAITOK);
234 msgmaps[i-1].next = i;
235 msgmaps[i].next = -1; /* implies entry is available */
308 free(msgmaps, M_MSG);
356 next = msgmaps[msghdr->msg_spot].next;
357 msgmaps[msghdr->msg_spot].next = free_msgmaps;
886 panic("not enough msgmaps");
895 free_msgmaps = msgmaps[next].next;
897 msgmaps[nex
[all...]

Completed in 16 milliseconds