Files
kernel/include/linux/msg.h
T

19 lines
395 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
2005-04-16 15:20:36 -07:00
#ifndef _LINUX_MSG_H
#define _LINUX_MSG_H
#include <linux/list.h>
2012-10-13 10:46:48 +01:00
#include <uapi/linux/msg.h>
2005-04-16 15:20:36 -07:00
/* one msg_msg structure for each message */
struct msg_msg {
struct list_head m_list;
long m_type;
size_t m_ts; /* message text size */
2014-01-27 17:07:04 -08:00
struct msg_msgseg *next;
2005-04-16 15:20:36 -07:00
void *security;
/* the actual message follows immediately */
};
#endif /* _LINUX_MSG_H */