Home
last modified time | relevance | path

Searched refs:msgflg (Results 1 – 5 of 5) sorted by relevance

/titanic_44/usr/src/lib/libbc/libc/sys/common/
H A Dmsgsys.c46 msgget(key_t key, int msgflg) in msgget() argument
48 return (_syscall(SYS_msgsys, MSGGET, key, msgflg)); in msgget()
58 msgrcv(int msqid, struct msgbuf *msgp, int msgsz, long msgtyp, int msgflg) in msgrcv() argument
61 msqid, msgp, msgsz, msgtyp, msgflg)); in msgrcv()
65 msgsnd(int msqid, struct msgbuf *msgp, int msgsz, int msgflg) in msgsnd() argument
68 msqid, msgp, msgsz, msgflg)); in msgsnd()
76 int msgflg; in msgsys() local
102 msgflg = va_arg(ap, int); in msgsys()
104 return (msgrcv(msqid, msgp, msgsz, msgtyp, msgflg)); in msgsys()
109 msgflg = va_arg(ap, int); in msgsys()
[all …]
/titanic_44/usr/src/lib/libc/port/sys/
H A Dmsgsys.c48 msgget(key_t key, int msgflg) in msgget() argument
50 return (syscall(SYS_msgsys, MSGGET, key, msgflg)); in msgget()
76 __msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in __msgrcv() argument
88 msgp, msgsz, msgtyp, msgflg); in __msgrcv()
94 msgp, msgsz, msgtyp, msgflg)); in __msgrcv()
98 __msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) in __msgsnd() argument
105 msgp, msgsz, msgflg); in __msgsnd()
110 return (syscall(SYS_msgsys, MSGSND, msqid, msgp, msgsz, msgflg)); in __msgsnd()
/titanic_44/usr/src/uts/common/os/
H A Dmsg.c593 msgget(key_t key, int msgflg) in msgget() argument
602 if (error = ipc_get(msq_svc, key, msgflg, (kipc_perm_t **)&qp, &lock)) in msgget()
644 if (error = ipc_commit_begin(msq_svc, key, msgflg, in msgget()
666 msgrcv(int msqid, struct ipcmsgbuf *msgp, size_t msgsz, long msgtyp, int msgflg) in msgrcv() argument
711 smp, msgp, msgflg); in msgrcv()
750 if (msgflg & IPC_NOWAIT) { in msgrcv()
805 size_t msgsz, struct msg *smp, struct ipcmsgbuf *msgp, int msgflg) in msg_copyout() argument
814 if ((msgflg & MSG_NOERROR) == 0) { in msg_copyout()
1094 msgsnd(int msqid, struct ipcmsgbuf *msgp, size_t msgsz, int msgflg) in msgsnd() argument
1171 if (msgflg & IPC_NOWAIT) { in msgsnd()
/titanic_44/usr/src/lib/libc/port/threads/
H A Dscalls.c795 msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in msgrcv() argument
800 PERFORM(__msgrcv(msqid, msgp, msgsz, msgtyp, msgflg)) in msgrcv()
804 msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) in msgsnd() argument
809 PERFORM(__msgsnd(msqid, msgp, msgsz, msgflg)) in msgsnd()
/titanic_44/usr/src/lib/libc/port/
H A Dllib-lc1367 int msgget(key_t key, int msgflg);
1369 ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
1370 int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);