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

  /src/sys/compat/common/
sysv_msg_14.c 63 struct msqid_ds14 omsqbuf; local in function:compat_14_sys_msgctl
69 error = copyin(SCARG(uap, buf), &omsqbuf, sizeof(omsqbuf));
72 __msqid_ds14_to_native(&omsqbuf, &msqbuf);
79 __native_to_msqid_ds14(&msqbuf, &omsqbuf);
80 error = copyout(&omsqbuf, SCARG(uap, buf), sizeof(omsqbuf));
sysv_msg_50.c 63 struct msqid_ds13 omsqbuf; local in function:compat_50_sys___msgctl13
69 error = copyin(SCARG(uap, buf), &omsqbuf, sizeof(omsqbuf));
72 __msqid_ds13_to_native(&omsqbuf, &msqbuf);
79 __native_to_msqid_ds13(&msqbuf, &omsqbuf);
80 error = copyout(&omsqbuf, SCARG(uap, buf), sizeof(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)
116 memset(omsqbuf, 0, sizeof *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;
211 struct netbsd32_msqid_ds14 omsqbuf; local in function:compat_14_netbsd32_msgctl
    [all...]

Completed in 28 milliseconds