| /* SPDX-License-Identifier: GPL-2.0 */ |
| #include <linux/time64.h> |
| #include <uapi/linux/msg.h> |
| /* one msg_msg structure for each message */ |
| size_t m_ts; /* message text size */ |
| /* the actual message follows immediately */ |
| /* one msq_queue structure for each present queue on the system */ |
| struct kern_ipc_perm q_perm; |
| time64_t q_stime; /* last msgsnd time */ |
| time64_t q_rtime; /* last msgrcv time */ |
| time64_t q_ctime; /* last change time */ |
| unsigned long q_cbytes; /* current number of bytes on queue */ |
| unsigned long q_qnum; /* number of messages in queue */ |
| unsigned long q_qbytes; /* max number of bytes on queue */ |
| pid_t q_lspid; /* pid of last msgsnd */ |
| pid_t q_lrpid; /* last receive pid */ |
| struct list_head q_messages; |
| struct list_head q_receivers; |
| struct list_head q_senders; |
| #endif /* _LINUX_MSG_H */ |