comparison man/trouble.texi @ 27729:75463d908406

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Thu, 17 Feb 2000 09:49:05 +0000
parents 4f5e4ec69f6a
children 203ba1f77b7b
comparison
equal deleted inserted replaced
27728:01121d3b9952 27729:75463d908406
698 are debugging a running process (not with a core dump). 698 are debugging a running process (not with a core dump).
699 699
700 To make Lisp errors stop Emacs and return to GDB, put a breakpoint at 700 To make Lisp errors stop Emacs and return to GDB, put a breakpoint at
701 @code{Fsignal}. 701 @code{Fsignal}.
702 702
703 To find out which Lisp functions are running, using GDB, move up the 703 For a short listing of Lisp functions running, type the GDB
704 stack, and each time you get to a frame for the function 704 command @code{xbacktrace}.
705 @code{Ffuncall}, type these GDB commands: 705
706 If you want to examine Lisp function arguments, move up the stack, and
707 each time you get to a frame for the function @code{Ffuncall}, type
708 these GDB commands:
706 709
707 @example 710 @example
708 p *args 711 p *args
709 pr 712 pr
710 @end example 713 @end example