]> Git Repo - J-linux.git/blob - include/linux/msg.h
Merge branches 'rcu/torture', 'rcu/fixes', 'rcu/docs', 'rcu/refscale', 'rcu/tasks...
[J-linux.git] / include / linux / msg.h
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 */
9 struct 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 */
This page took 0.027489 seconds and 4 git commands to generate.