Home
last modified time | relevance | path

Searched refs:msg_qbytes (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/kern/
H A Dsysv_msg.c269 msqids[i].u.msg_qbytes = 0; /* implies entry is available */ in msginit()
328 if (msqkptr->u.msg_qbytes != 0 || in msgunload()
438 msqkptr->u.msg_qbytes = 0; /* Mark it as free */ in msq_remove()
519 if (msqkptr->u.msg_qbytes == 0) { in kern_msgctl()
581 if (msqbuf->msg_qbytes > msqkptr->u.msg_qbytes) { in kern_msgctl()
586 if (msqbuf->msg_qbytes > msginfo.msgmnb) { in kern_msgctl()
589 msqbuf->msg_qbytes = msginfo.msgmnb; /* silently restrict qbytes to system limit */ in kern_msgctl()
591 if (msqbuf->msg_qbytes == 0) { in kern_msgctl()
600 msqkptr->u.msg_qbytes = msqbuf->msg_qbytes; in kern_msgctl()
659 if (msqkptr->u.msg_qbytes != 0 && in sys_msgget()
[all …]
/freebsd/sys/compat/linux/
H A Dlinux_ipc.c166 l_ushort msg_qbytes; /* max number of bytes on queue */ member
251 bsp->msg_qbytes = lsp->msg_qbytes; in linux_to_bsd_msqid_ds()
266 lsp->msg_qbytes = bsp->msg_qbytes; in bsd_to_linux_msqid_ds()
312 if (linux_msqid.msg_qbytes == 0) in linux_msqid_pullup()
313 linux_msqid64->msg_qbytes = linux_msqid.msg_lqbytes; in linux_msqid_pullup()
315 linux_msqid64->msg_qbytes = linux_msqid.msg_qbytes; in linux_msqid_pullup()
347 if (linux_msqid64->msg_qbytes > USHRT_MAX) in linux_msqid_pushdown()
348 linux_msqid.msg_qbytes = USHRT_MAX; in linux_msqid_pushdown()
350 linux_msqid.msg_qbytes = linux_msqid64->msg_qbytes; in linux_msqid_pushdown()
351 linux_msqid.msg_lqbytes = linux_msqid64->msg_qbytes; in linux_msqid_pushdown()
H A Dlinux_ipc64.h84 l_ulong msg_qbytes; /* max number of bytes on queue */ member
/freebsd/sys/sys/
H A Dmsg.h70 msglen_t msg_qbytes; /* max # of bytes on the queue */ member
95 msglen_t msg_qbytes; /* max # of bytes on the queue */ member
/freebsd/sys/compat/freebsd32/
H A Dfreebsd32_ipc.h73 uint32_t msg_qbytes; member
158 uint32_t msg_qbytes; member
/freebsd/contrib/netbsd-tests/lib/libc/sys/
H A Dt_msgctl.c154 msgds.msg_qbytes = 1; in ATF_TC_BODY()
286 msgds.msg_qbytes = 1; in ATF_TC_BODY()
/freebsd/usr.bin/ipcs/
H A Dipcs.c215 if (kxmsqids[i].u.msg_qbytes != 0) { in main()
362 printf(" %20lu", kmsqptr->u.msg_qbytes); in print_kmsqptr()
/freebsd/tools/regression/sysvmsg/
H A Dmsgtest.c270 mp->msg_qnum, (u_long)mp->msg_qbytes, mp->msg_lspid, in print_msqid_ds()
/freebsd/usr.bin/ipcrm/
H A Dipcrm.c84 if (kxmsqids[num].u.msg_qbytes != 0) { in msgrm()
/freebsd/contrib/netbsd-tests/kernel/
H A Dt_sysv.c322 mp->msg_qnum, (u_long)mp->msg_qbytes, mp->msg_lspid, in print_msqid_ds()
/freebsd/sys/compat/linprocfs/
H A Dlinprocfs.c2111 if (msqids[id].u.msg_qbytes == 0) in linprocfs_dosysvipc_msg()