/* SPDX-License-Identifier: GPL-2.0 */#ifndef _LINUX_MSG_H#define _LINUX_MSG_H#include<linux/list.h>#include<uapi/linux/msg.h>/* one msg_msg structure for each message */structmsg_msg{structlist_headm_list;longm_type;size_tm_ts;/* message text size */structmsg_msgseg*next;void*security;/* the actual message follows immediately */};#endif /* _LINUX_MSG_H */