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

/darwin-on-arm/xnu/bsd/kern/
H A Dsysv_msg.c118 msgssz, /* size of a message segment (see notes above) */ variable
226 * msginfo.msgssz should be a power of two for efficiency reasons.
227 * It is also pretty silly if msginfo.msgssz is less than 8
231 while (i < 1024 && i != msginfo.msgssz)
233 if (i != msginfo.msgssz) {
234 printf("msginfo.msgssz=%d (0x%x) not a small power of 2; resetting to %d\n", msginfo.msgssz, msginfo.msgssz, MSGSSZ);
235 msginfo.msgssz = MSGSSZ;
368 if (msghdr->msg_ts >= msginfo.msgssz)
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dmsg.h303 * Each message is broken up and stored in segments that are msgssz bytes
306 * Consequently, msginit in kern/sysv_msg.c checks that msgssz is a power of
314 msgssz, /* size of a message segment (see notes above) */ member in struct:msginfo

Completed in 21 milliseconds