Deleted Added
full compact
sysv_msg.c (9759) sysv_msg.c (10358)
1/* $Id: sysv_msg.c,v 1.4 1995/05/30 08:06:01 rgrimes Exp $ */
1/* $Id: sysv_msg.c,v 1.5 1995/07/29 11:40:13 bde Exp $ */
2
3/*
4 * Implementation of SVID messages
5 *
6 * Author: Daniel Boulet
7 *
8 * Copyright 1993 Daniel Boulet and RTMX Inc.
9 *

--- 11 unchanged lines hidden (view full) ---

21
22#include <sys/param.h>
23#include <sys/systm.h>
24#include <sys/kernel.h>
25#include <sys/proc.h>
26#include <sys/msg.h>
27#include <sys/malloc.h>
28
2
3/*
4 * Implementation of SVID messages
5 *
6 * Author: Daniel Boulet
7 *
8 * Copyright 1993 Daniel Boulet and RTMX Inc.
9 *

--- 11 unchanged lines hidden (view full) ---

21
22#include <sys/param.h>
23#include <sys/systm.h>
24#include <sys/kernel.h>
25#include <sys/proc.h>
26#include <sys/msg.h>
27#include <sys/malloc.h>
28
29/*
30 * System initialization
31 */
32
33extern void msginit(); /* should be static*/
34SYSINIT(sysv_msg, SI_SUB_SYSV_MSG, SI_ORDER_FIRST, msginit, NULL)
35
29#define MSG_DEBUG
30#undef MSG_DEBUG_OK
31
32static int msgctl(), msgget(), msgsnd(), msgrcv();
33
34int (*msgcalls[])() = { msgctl, msgget, msgsnd, msgrcv };
35
36int nfree_msgmaps; /* # of free map entries */

--- 966 unchanged lines hidden ---
36#define MSG_DEBUG
37#undef MSG_DEBUG_OK
38
39static int msgctl(), msgget(), msgsnd(), msgrcv();
40
41int (*msgcalls[])() = { msgctl, msgget, msgsnd, msgrcv };
42
43int nfree_msgmaps; /* # of free map entries */

--- 966 unchanged lines hidden ---