1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/list.h>
6 #include <uapi/linux/msg.h>
8 /* one msg_msg structure for each message */
10 struct list_head m_list;
12 size_t m_ts; /* message text size */
13 struct msg_msgseg *next;
15 /* the actual message follows immediately */
18 #endif /* _LINUX_MSG_H */