Path: utzoo!attcan!uunet!husc6!bloom-beacon!EXPO.LCS.MIT.EDU!rws From: rws@EXPO.LCS.MIT.EDU (Bob Scheifler) Newsgroups: comp.windows.x Subject: Re: SUN 3/60 3.5OS server crash Message-ID: <8903302201.AA02830@EXPIRE.LCS.MIT.EDU> Date: 30 Mar 89 22:01:33 GMT References: <8903302033.AA17144@nih.gov> Sender: daemon@bloom-beacon.MIT.EDU Organization: The Internet Lines: 12 re: Sun server crashing when given lots of lines Your server is probably running with a restricted stack space (e.g. 512K). Your server is almost certainly compiled to use stack allocation for temporary objects, and apparently whatever version of alloca() you (and I) are using doesn't have the courtesy of returning NULL when the stack is exceeded. You have a couple of options: Find a way to unlimit or increase the stack size of the server. (We'll do this for R4.) Recompile the server to not use alloca().