Home
last modified time | relevance | path

Searched refs:SYS_msgsys (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/sys/
H A Dmsgsys.c48 return (syscall(SYS_msgsys, MSGGET, key, msgflg)); in msgget()
59 return (syscall(SYS_msgsys, MSGCTL, msqid, cmd, buf)); in msgctl()
70 return (syscall(SYS_msgsys, MSGCTL, msqid, cmd, buf)); in msgctl64()
85 error = __systemcall(&rval, SYS_msgsys, MSGRCV, msqid, in __msgrcv()
91 return ((ssize_t)syscall(SYS_msgsys, MSGRCV, msqid, in __msgrcv()
102 error = __systemcall(&rval, SYS_msgsys, MSGSND, msqid, in __msgsnd()
108 return (syscall(SYS_msgsys, MSGSND, msqid, msgp, msgsz, msgflg)); in __msgsnd()
114 return (syscall(SYS_msgsys, MSGIDS, buf, nids, pnids)); in msgids()
120 return (syscall(SYS_msgsys, MSGSNAP, msqid, buf, bufsz, msgtyp)); in msgsnap()
/illumos-gate/usr/src/cmd/truss/
H A Dsystable.c944 { "msgget", SYS_msgsys },
945 { "msgctl", SYS_msgsys },
946 { "msgctl64", SYS_msgsys },
947 { "msgrcv", SYS_msgsys },
948 { "msgsnd", SYS_msgsys },
949 { "msgids", SYS_msgsys },
950 { "msgsnap", SYS_msgsys },
951 { "msgop", SYS_msgsys },
1159 case SYS_msgsys: /* msgsys() */ in subsys()
1474 case SYS_msgsys: /* msgsys() */ in getsubcode()
[all …]
H A Dexpound.c5033 case SYS_msgsys: in expound()
/illumos-gate/usr/src/uts/common/sys/
H A Dsyscall.h108 #define SYS_msgsys 49 macro