HomeSort by: relevance | last modified time | path
    Searched defs:msqbuf (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/compat/common/
sysv_msg_14.c 62 struct msqid_ds msqbuf; local in function:compat_14_sys_msgctl
72 __msqid_ds14_to_native(&omsqbuf, &msqbuf);
76 (cmd == IPC_SET || cmd == IPC_STAT) ? &msqbuf : NULL);
79 __native_to_msqid_ds14(&msqbuf, &omsqbuf);
sysv_msg_50.c 62 struct msqid_ds msqbuf; local in function:compat_50_sys___msgctl13
72 __msqid_ds13_to_native(&omsqbuf, &msqbuf);
76 (cmd == IPC_SET || cmd == IPC_STAT) ? &msqbuf : NULL);
79 __native_to_msqid_ds13(&msqbuf, &omsqbuf);
  /src/sys/compat/netbsd32/
netbsd32_compat_14_sysv.c 96 netbsd32_msqid_ds14_to_native(struct netbsd32_msqid_ds14 *omsqbuf, struct msqid_ds *msqbuf)
99 netbsd32_ipc_perm14_to_native(&omsqbuf->msg_perm, &msqbuf->msg_perm);
101 #define CVT(x) msqbuf->x = omsqbuf->x
113 native_to_netbsd32_msqid_ds14(struct msqid_ds *msqbuf, struct netbsd32_msqid_ds14 *omsqbuf)
117 native_to_netbsd32_ipc_perm14(&msqbuf->msg_perm, &omsqbuf->msg_perm);
119 #define CVT(x) omsqbuf->x = msqbuf->x
132 omsqbuf->msg_cbytes = msqbuf->_msg_cbytes;
210 struct msqid_ds msqbuf; local in function:compat_14_netbsd32_msgctl
221 netbsd32_msqid_ds14_to_native(&omsqbuf, &msqbuf);
225 (cmd == IPC_SET || cmd == IPC_STAT) ? &msqbuf : NULL)
    [all...]
  /src/sys/kern/
sysv_msg.c 453 struct msqid_ds msqbuf; local in function:sys___msgctl50
459 error = copyin(SCARG(uap, buf), &msqbuf, sizeof(msqbuf));
465 (cmd == IPC_SET || cmd == IPC_STAT) ? &msqbuf : NULL);
468 error = copyout(&msqbuf, SCARG(uap, buf), sizeof(msqbuf));
474 msgctl1(struct lwp *l, int msqid, int cmd, struct msqid_ds *msqbuf)
538 if (msqbuf->msg_qbytes > msqptr->msg_qbytes &&
541 KAUTH_ARG(msqbuf->msg_qbytes),
546 if (msqbuf->msg_qbytes > msginfo.msgmnb)
    [all...]

Completed in 14 milliseconds