From: "Charles Sandmann" Newsgroups: comp.os.msdos.djgpp Subject: Re: gcc: Page Fault Date: Wed, 11 Jun 1997 21:53:10 Organization: Aspen Technology, Inc. Lines: 11 Message-ID: <339f1e46.sandmann@clio.rice.edu> References: <5naj8r$3glc AT elmo DOT cadvision DOT com> Reply-To: sandmann AT clio DOT rice DOT edu NNTP-Posting-Host: spica.dmccorp.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk > I'm getting this from gcc.exe: > Page fault cr2=10120000 at eip=139648; flags=3002 > I am compiling a file with an internal data structure that is quite > large. This file compiled fine before. What's going on here? This message is from CWSDPMI. If the file compiled OK before, I suspect that you have almost filled the disk where the CWSDPMI swap file lives (usually C:). I suspect some call is not checking the return from malloc or sbrk (the above is 64K aligned). What is strange is the DJGPP handler did not catch the signal - so it might be nested. Very strange.