Date: Wed, 15 Nov 2000 13:34:35 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: 23yrold3yrold cc: djgpp AT delorie DOT com Subject: Re: DJGPP no like vectors? In-Reply-To: <3a120ffd_1@corp.newsfeeds.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 14 Nov 2000, 23yrold3yrold wrote: > If the vectors get too large, the program crashes. I don't > know if it helps, but I've included results of symify; the reason I'm asking > this here is the presence of the dj_movedata error; this is a DJGPP thing, > correct (same with new2.cc)? __dj_movedata and __builtin_delete are indeed part of the library, but it's your program that causes the crash. In the first case, you probably pass an invalid pointer tp the copy_trivial function, and in the second case your code somehow either overwrote one of the allocated buffers or freed the same storage more than once. See sections 12.2 and 9.2 of the DJGPP FAQ for more details about these problems. > Also, if someone could tell me if there's > anything further I can do with this mess of numbers (after symify) that > might help too... See section 12.2 of the FAQ. Unless you post some of the source code that is involved in these crashes, no one can tell you anything more useful.