Subject: Re: Increasing MAXSSIZ
To: David Forbes <david@flossy.u-net.com>
From: Richard Earnshaw <rearnsha@cambridge.arm.com>
List: port-arm32
Date: 05/09/2000 23:19:02
> > I can't check right now, but I'm fairly certain my machine at home
> > (riscpc) has a large MAXSSIZ than that. I certainly bumped most of the
> > limits (though it may have just been the default limits).
> >
> > I'll try and remember to check tonight.
>
> That'd be cool if you could, because then I know it's worthwhile to start
> digging into the source... ;-)
Ok, here's the relevant lines from my config file (note, this is a RISC PC
not a CATS, but it should help you narrow your search):
# Shared memory options
options SYSVMSG # System V-like message queues
options SYSVSEM # System V-like semaphores
options SYSVSHM # System V-like memory sharing
options SHMMAXPGS=1024 # 1024 pages is the default
# Virtual memory limits
options DFLDSIZ=0x8000000 # Default Data Segment limit (128M)
options DFLSSIZ=0x1000000 # Default Stack Segment limit (16M)
options MAXSSIZ=0x4000000 # Max Stack Segment limit (64M)
R.