Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cs.utexas.edu!fletcher From: fletcher@cs.utexas.edu (Fletcher Mattox) Newsgroups: comp.sys.sequent Subject: Re: malloc and -lpps Message-ID: <7243@cs.utexas.edu> Date: 24 Nov 89 02:37:08 GMT References: <7237@cs.utexas.edu> Organization: U. Texas CS Dept., Austin, Texas Lines: 10 In article <7237@cs.utexas.edu> I wondered: >Can one not use malloc() and -lpps in the same program? The problem is that private bss is limited to 64k when using shared memory, so malloc() will fail if used to allocate any substantial amount of private memory. A possible workaround is to increase private bss with the -Z switch to ld(1).