https://github.com/torvalds/linux
Raw File
Tip revision: 508efc09cce9f1de8b1b5ae304bf913b12d832a6 authored by dependabot[bot] on 18 July 2024, 21:26:06 UTC
build(deps): bump idna from 3.4 to 3.7 in /drivers/gpu/drm/ci/xfails
Tip revision: 508efc0
msg.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_MSG_H
#define _LINUX_MSG_H

#include <linux/list.h>
#include <uapi/linux/msg.h>

/* 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 */
	struct msg_msgseg *next;
	void *security;
	/* the actual message follows immediately */
};

#endif /* _LINUX_MSG_H */
back to top