This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: seg fault using octave with RH 6.0


> Anyone know what is going on with the back trace below?

That's easy: The memory management is messed up (or you are in the
process of messing it up right now). That means: Either you are
deleting an object that has already been deleted, or some earlier
delete made that error, or somebody was overwriting memory through a
bogus pointer.

You might be able to track this down via malloc debugging, please read
the libc info on mcheck(3) and mtrace(3).

Hope this helps,
Martin

P.S. I know nothing about Octave or its loadable modules.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]