Searched defs:msqid (Results 1 - 3 of 3) sorted by relevance
/osnet-11/usr/src/lib/libc/port/sys/ |
H A D | msgsys.c | 54 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 D | libnwam_events.c | 64 * 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 D | scalls.c | 791 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 30 milliseconds