Searched defs:msqid (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libc/port/sys/
H A Dmsgsys.c54 msgctl(int msqid, int cmd, struct msqid_ds *buf) argument
61 return (syscall(SYS_msgsys, MSGCTL, msqid, cmd, buf));
65 msgctl64(int msqid, int cmd, struct msqid_ds64 *buf) argument
72 return (syscall(SYS_msgsys, MSGCTL, msqid, cmd, buf));
76 __msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) argument
87 error = __systemcall(&rval, SYS_msgsys, MSGRCV, msqid,
93 return ((ssize_t)syscall(SYS_msgsys, MSGRCV, msqid,
98 __msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) argument
104 error = __systemcall(&rval, SYS_msgsys, MSGSND, msqid,
110 return (syscall(SYS_msgsys, MSGSND, msqid, msg
120 msgsnap(int msqid, void *buf, size_t bufsz, long msgtyp) argument
[all...]
/osnet-11/usr/src/lib/libnwam/common/
H A Dlibnwam_events.c64 * This is protecting simultaneous access to the msqid and its configuration.
228 int msqid; local
256 if ((msqid = msgget(key, 0644)) == -1) {
265 if (msgctl(msqid, IPC_STAT, &buf) == -1) {
289 if (msgsnd(msqid, (struct msgbuf *)event, event->nwe_size,
314 int msqid; local
317 (msqid = msgget(key, 0644)) != -1 &&
318 msgctl(msqid, IPC_RMID, NULL) != -1)
/osnet-11/usr/src/lib/libc/port/threads/
H A Dscalls.c791 msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) argument
796 PERFORM(__msgrcv(msqid, msgp, msgsz, msgtyp, msgflg))
800 msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) argument
805 PERFORM(__msgsnd(msqid, msgp, msgsz, msgflg))

Completed in 24 milliseconds