From: j DOT aldrich6 AT genie DOT com Message-Id: <199606120421.AA059483290@relay1.geis.com> Date: Wed, 12 Jun 96 04:03:00 UTC 0000 To: djgpp AT delorie DOT com Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Subject: Re: GDB and UNIONS Reply to message 8352161 from MCL134 AT PSU DOT ED on 06/11/96 7:49PM > Also, how can you restart a program in GDB without quitting and >reloading the program. I would find much relief by not haing to retype >all my display commands each debug pass. You can't. It has to do with the way DOS runs programs. But you can create an init file for gdb which contains initialization commands. Here's mine: ---- c:\djgpp\bin\gdb.ini ---- set print pretty set print array set print union set print demangle set editing on ---- end ----