emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Stak dump with tar.[bz2/gz] files (Cygwin)


From: Eli Zaretskii
Subject: Re: Stak dump with tar.[bz2/gz] files (Cygwin)
Date: Sat, 14 Jun 2008 13:41:26 +0300

> Date: Sat, 14 Jun 2008 01:29:02 +0200
> From: Angelo Graziosi <address@hidden>
> CC: address@hidden
> 
> Eli Zaretskii ha scritto:
> 
> > You can put a breakpoint on a function even if its sources are
> > not available.
> 
> How?

Like with any other function:

  (gdb) break open_stackdumpfile

The argument to the "break" command can be:

  . a line number ("break 123")
  . an offset ("break +10" or "break "-20")
  . a function name ("break func") -- this is your case
  . a file name and line number ("break foo.c:123")
  . a file name and a function name ("break foo.c:func")
  . an address ("break *0x12345678" or "break &expr")

See the node "Specify Location" in the GDB manual for more info.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]