Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / linux / msg.h
blob9a972a296b9539e5c83565c09d196e7e1c06f354
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_MSG_H
3 #define _LINUX_MSG_H
5 #include <linux/list.h>
6 #include <uapi/linux/msg.h>
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 */
18 #endif /* _LINUX_MSG_H */