# $Copyright:	$
# Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989, 1990 
# Sequent Computer Systems, Inc.   All rights reserved.
#  
# This software is furnished under a license and may be used
# only in accordance with the terms of that license and with the
# inclusion of the above copyright notice.   This software may not
# be provided or otherwise made available to, or used by, any
# other person.  No title to or ownership of the software is
# hereby transferred.
#
# $Header: config 1.4 89/12/18 $
#

modules {
	msg.c
}

headers {
	sys/msg.h
}

space {
	msg_space.c
}

stubs {
	msg_stubs.c
}

#
#  System V style messaging module configuration parameters.
#

declare [3] {
  MSGMAP	int {"IPC message buffer space map size"}
  MSGMAX	int {"IPC maximum message size (bytes)"}
  MSGMNB	int {"IPC maximum bytes on a message queue"}
  MSGMNI	int {"IPC number of message queue identifiers"}
  MSGSSZ	int {"IPC message segment size"}
  MSGTQL	int {"IPC number of system message headers"}
  MSGSEG	int {"IPC number of message segments"}
}

default {
  MSGMAP	{   100;  20..}	# number of map structure entries 
  MSGMAX	{  8192; 128..}	# max message size (bytes)
  MSGMNB	{ 16384; 256..}	# max number of bytes on a queue
  MSGMNI	{    50;  10..}	# number of message queue identifiers
  MSGSSZ	{     8;   8..}	# size of a message segment
  MSGTQL	{    40;   8..}	# number of system message headers
  MSGSEG	{  1024; 128..}	# number of message segments
}
