Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at be2d3ecedd9911fbfd7e55cc9ceac5f8b79ae4cf 18 lines 395 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _LINUX_MSG_H 3#define _LINUX_MSG_H 4 5#include <linux/list.h> 6#include <uapi/linux/msg.h> 7 8/* one msg_msg structure for each message */ 9struct msg_msg { 10 struct list_head m_list; 11 long m_type; 12 size_t m_ts; /* message text size */ 13 struct msg_msgseg *next; 14 void *security; 15 /* the actual message follows immediately */ 16}; 17 18#endif /* _LINUX_MSG_H */