Home
last modified time | relevance | path

Searched refs:msqid (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/ipc/
H A Dmsg.c401 static int msgctl_down(struct ipc_namespace *ns, int msqid, int cmd, in msgctl_down() argument
411 ipcp = ipcctl_obtain_check(ns, &msg_ids(ns), msqid, cmd, in msgctl_down()
477 static int msgctl_info(struct ipc_namespace *ns, int msqid, in msgctl_info() argument
518 static int msgctl_stat(struct ipc_namespace *ns, int msqid, in msgctl_stat() argument
528 msq = msq_obtain_object(ns, msqid); in msgctl_stat()
534 msq = msq_obtain_object_check(ns, msqid); in msgctl_stat()
597 static long ksys_msgctl(int msqid, int cmd, struct msqid_ds __user *buf, int version) in ksys_msgctl() argument
603 if (msqid < 0 || cmd < 0) in ksys_msgctl()
612 err = msgctl_info(ns, msqid, cmd, &msginfo); in ksys_msgctl()
622 err = msgctl_stat(ns, msqid, cmd, &msqid64); in ksys_msgctl()
[all …]
H A Dutil.h282 long compat_ksys_old_msgctl(int msqid, int cmd, void __user *uptr);
283 long compat_ksys_msgrcv(int msqid, compat_uptr_t msgp, compat_ssize_t msgsz,
285 long compat_ksys_msgsnd(int msqid, compat_uptr_t msgp,
/openbmc/openbmc-tools/pwmtachtool/src/
H A DEINTR_wrappers.h67 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
81 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
H A DEINTR_wrappers.c371 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) in sigwrap_msgsnd() argument
375 int Result = msgsnd(msqid, msgp, msgsz, msgflg); in sigwrap_msgsnd()
386 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in sigwrap_msgrcv() argument
390 ssize_t Result = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in sigwrap_msgrcv()
/openbmc/openbmc-tools/adcapp/src/
H A DEINTR_wrappers.h67 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
81 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
H A DEINTR_wrappers.c428 int sigwrap_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg) in sigwrap_msgsnd() argument
432 int Result = msgsnd(msqid, msgp, msgsz, msgflg); in sigwrap_msgsnd()
443 ssize_t sigwrap_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) in sigwrap_msgrcv() argument
447 ssize_t Result = msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); in sigwrap_msgrcv()
/openbmc/linux/include/linux/
H A Dsyscalls.h709 asmlinkage long sys_old_msgctl(int msqid, int cmd, struct msqid_ds __user *buf);
710 asmlinkage long sys_msgctl(int msqid, int cmd, struct msqid_ds __user *buf);
711 asmlinkage long sys_msgrcv(int msqid, struct msgbuf __user *msgp,
713 asmlinkage long sys_msgsnd(int msqid, struct msgbuf __user *msgp,
1261 long ksys_old_msgctl(int msqid, int cmd, struct msqid_ds __user *buf);
1262 long ksys_msgrcv(int msqid, struct msgbuf __user *msgp, size_t msgsz,
1264 long ksys_msgsnd(int msqid, struct msgbuf __user *msgp, size_t msgsz,
H A Dcompat.h745 asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
747 asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
/openbmc/qemu/linux-user/
H A Dsyscall.c4265 static inline abi_long do_msgsnd(int msqid, abi_long msgp, in do_msgsnd() argument
4287 ret = get_errno(safe_msgsnd(msqid, host_mb, msgsz, msgflg)); in do_msgsnd()
4292 ret = get_errno(safe_ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, in do_msgsnd()
4295 ret = get_errno(safe_ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, in do_msgsnd()
4320 static inline abi_long do_msgrcv(int msqid, abi_long msgp, in do_msgrcv() argument
4343 ret = get_errno(safe_msgrcv(msqid, host_mb, msgsz, msgtyp, msgflg)); in do_msgrcv()
4347 ret = get_errno(safe_ipc(IPCOP_CALL(1, IPCOP_msgrcv), msqid, msgsz, in do_msgrcv()