diff options
author | Aaron Weber <aaron@ximian.com> | 2001-07-13 04:46:49 +0800 |
---|---|---|
committer | Aaron Weber <aaron@src.gnome.org> | 2001-07-13 04:46:49 +0800 |
commit | 9255773c8b7326dac469530165f434c3cffdd552 (patch) | |
tree | f2121c13a73a09ebe4718783af9769ea4bf5961a /help/C | |
parent | 4da3e76c2cb4e89850166ae5fa0bf2e4db837733 (diff) | |
download | gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.tar gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.tar.gz gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.tar.bz2 gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.tar.lz gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.tar.xz gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.tar.zst gsoc2013-evolution-9255773c8b7326dac469530165f434c3cffdd552.zip |
svn path=/trunk/; revision=11063
2001-07-12 Aaron Weber <aaron@ximian.com>
* C/evolution-faq.sgml:
svn path=/trunk/; revision=11063
Diffstat (limited to 'help/C')
-rw-r--r-- | help/C/evolution-faq.sgml | 65 |
1 files changed, 62 insertions, 3 deletions
diff --git a/help/C/evolution-faq.sgml b/help/C/evolution-faq.sgml index 0dac339f0a..92afbf1087 100644 --- a/help/C/evolution-faq.sgml +++ b/help/C/evolution-faq.sgml @@ -1,6 +1,5 @@ -<!-- <!DOCTYPE appendix PUBLIC "-//GNOME//DTD DocBook PNG Variant V1.1//EN"> ---> + <appendix id="evolution-faq"> <title>Frequently Asked Questions About Ximian Evolution</title> <para> @@ -312,7 +311,7 @@ <!-- Section: Getting and compiling --> - <sect1 id="get-and-compile"> + <sect1 id="faq-get-and-compile"> <title> Getting and Compiling Evolution </title> @@ -908,9 +907,69 @@ bt </para> </answer> </qandaentry> + <qandaentry> + <question> + <para> + A component of evolution crashed, but since the rest of + evolution stayed up, I couldn't use bug-buddy to get a + stack trace. How can I use gdb to get a stack trace of + the component? + </para> + </question> + <answer> + <para> + To trace a failing component (in this example, evolution-mail): + <orderedlist numeration="arabic"> + <listitem> + <para> + Open two terminals. + </para> + </listitem> + <listitem> + <para> + In one, type <command>gdb evolution-mail</command> + . Replace "evolution-mail" with the name of the + component that is crashing: evolution-addresbook, + evolution-calendar, etc.) + </para> + </listitem> + <listitem> + <para> + Once gdb starts, type <userinput>r</userinput> and + hit enter. Give it a few seconds, to make sure it + starts up completely. + </para> + </listitem> + <listitem> + <para> + In the second terminal, type + <command>evolution</command>. Do whatever you did + to cause the crash in the component you used in + step two. + </para> + </listitem> + <listitem> + <para> + When the crash occurs, type 'bt' in the first + terminal. + </para> + </listitem> + + <listitem> + <para> + Cut and paste the output into your bug report. + </para> + </listitem> + </orderedlist> + </para> + </answer> + </qandaentry> </qandaset> </sect1> </appendix> <!-- Local Variables: --> <!-- indent-tabs-mode:nil --> <!-- End: --> + + + |