Date: Wed, 24 Feb 1999 11:08:39 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: John Simon Churchill cc: djgpp AT delorie DOT com Subject: Re: RMCB problems and malloc probs In-Reply-To: <36D2F7DE.B4798657@hotmail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Tue, 23 Feb 1999, John Simon Churchill wrote: > Could anyone tell me what would cause an "Invalid TSS in RMCB" please > and what does it mean?? This is explained at some length in section 12.2 of the DJGPP FAQ list (v2/faq211b.zip from the same place you get DJGPP). In short, most probably, you installed some handler for a real-mode service and didn't unsinstall it when the program exited. > also : why would malloc cause an invalid page fault??? This mostly happens when you write beyond the end of memory allocated by some previous call to malloc. See section 12.2 about this, too.