xref: /original-bsd/sys/sys/msgbuf.h (revision cf2124ff)
1 /*
2  * Copyright (c) 1981, 1984 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)msgbuf.h	7.5 (Berkeley) 05/02/91
8  */
9 
10 #define	MSG_BSIZE	(4096 - 3 * sizeof(long))
11 struct	msgbuf {
12 #define	MSG_MAGIC	0x063061
13 	long	msg_magic;
14 	long	msg_bufx;		/* write pointer */
15 	long	msg_bufr;		/* read pointer */
16 	char	msg_bufc[MSG_BSIZE];	/* buffer */
17 };
18 #ifdef KERNEL
19 struct	msgbuf *msgbufp;
20 #endif
21