Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LINUX_MSG_H
0003 #define _LINUX_MSG_H
0004 
0005 #include <linux/list.h>
0006 #include <uapi/linux/msg.h>
0007 
0008 /* one msg_msg structure for each message */
0009 struct msg_msg {
0010     struct list_head m_list;
0011     long m_type;
0012     size_t m_ts;        /* message text size */
0013     struct msg_msgseg *next;
0014     void *security;
0015     /* the actual message follows immediately */
0016 };
0017 
0018 #endif /* _LINUX_MSG_H */