Path: utzoo!attcan!uunet!wuarchive!udel!princeton!grendel!rhl From: rhl@grendel.Princeton.EDU (Robert Lupton (the Good)) Newsgroups: comp.unix.questions Subject: Re: assertions and debuggers Keywords: assert,dbx Message-ID: <2728@idunno.Princeton.EDU> Date: 22 Sep 90 18:00:54 GMT References: <10834@rama.UUCP> <13921@smoke.BRL.MIL> Sender: news@idunno.Princeton.EDU Organization: Princeton University, Princeton, New Jersey Lines: 16 (I haven't used VMS for about 3 years, but this used to be true anyway...) Perhaps the real point of this discussion has got lost. Under VMS you don't do post-mortem debugging as there is no "core" file -- you get straight into the debugger if you compiled and linked with it. You have to make sure that you say run/nodebug or you'll satrt in the debugger, and I'm not sure if this can be done with foreign commands. Under unix you call abort() (or whatever) and get a coredump; then you start up the debugger and see where you were. The functionality is similar (except that you can't attempt to clean up and continue). Robert