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

/freebsd-11-stable/sys/kern/
H A Dsysv_msg.c164 static struct msgmap *msgmaps; /* MSGSEG msgmap structures */ variable in typeref:struct:msgmap
220 msgmaps = malloc(sizeof(struct msgmap) * msginfo.msgseg, M_MSG, M_WAITOK);
247 msgmaps[i-1].next = i;
248 msgmaps[i].next = -1; /* implies entry is available */
340 free(msgmaps, M_MSG);
388 next = msgmaps[msghdr->msg_spot].next;
389 msgmaps[msghdr->msg_spot].next = free_msgmaps;
962 panic("not enough msgmaps");
971 free_msgmaps = msgmaps[next].next;
973 msgmaps[nex
[all...]

Completed in 97 milliseconds