Merge tag 'perf-tools-for-v6.4-3-2023-05-06' of git://git.kernel.org/pub/scm/linux...
[linux-block.git] / include / linux / msg.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_MSG_H
3#define _LINUX_MSG_H
4
77597ad6 5#include <linux/list.h>
607ca46e 6#include <uapi/linux/msg.h>
1da177e4
LT
7
8/* one msg_msg structure for each message */
9struct msg_msg {
4e9b45a1
MK
10 struct list_head m_list;
11 long m_type;
12 size_t m_ts; /* message text size */
239521f3 13 struct msg_msgseg *next;
1da177e4
LT
14 void *security;
15 /* the actual message follows immediately */
16};
17
1da177e4 18#endif /* _LINUX_MSG_H */