* [multiprocess] RFA: fix menu in documentation
@ 2008-11-21 22:37 Tom Tromey
2008-11-21 22:54 ` Tom Tromey
2008-11-22 5:12 ` Eli Zaretskii
0 siblings, 2 replies; 7+ messages in thread
From: Tom Tromey @ 2008-11-21 22:37 UTC (permalink / raw)
To: gdb-patches
I needed this to build the multiprocess branch.
Ordinarily I would just check this in as obvious, but I didn't want to
mess with a development branch without permission.
Ok?
Tom
2008-11-21 Tom Tromey <tromey@redhat.com>
* gdb.texinfo (Running): Add "Inferiors" to menu.
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 75d3af6..1c0e201 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -1811,6 +1811,7 @@ kill a child process.
* Attach:: Debugging an already-running process
* Kill Process:: Killing the child process
+* Inferiors:: Debugging Multiple Inferiors
* Multiple Programs:: Debugging multiple programs
* Threads:: Debugging programs with multiple threads
* Forks:: Debugging forks
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [multiprocess] RFA: fix menu in documentation
2008-11-21 22:37 [multiprocess] RFA: fix menu in documentation Tom Tromey
@ 2008-11-21 22:54 ` Tom Tromey
2008-11-22 5:06 ` Stan Shebs
2008-11-22 5:29 ` Eli Zaretskii
2008-11-22 5:12 ` Eli Zaretskii
1 sibling, 2 replies; 7+ messages in thread
From: Tom Tromey @ 2008-11-21 22:54 UTC (permalink / raw)
To: gdb-patches
>>>>> "Tom" == Tom Tromey <tromey@redhat.com> writes:
Tom> +* Inferiors:: Debugging Multiple Inferiors
Tom> * Multiple Programs:: Debugging multiple programs
Pedro pointed out the goofy capitalization here -- I had just copied
the @section and not noticed this. Here's a better patch.
Tom
2008-11-21 Tom Tromey <tromey@redhat.com>
* gdb.texinfo (Running): Add "Inferiors" to menu.
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 75d3af6..d99c94e 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -1811,6 +1811,7 @@ kill a child process.
* Attach:: Debugging an already-running process
* Kill Process:: Killing the child process
+* Inferiors:: Debugging multiple inferiors
* Multiple Programs:: Debugging multiple programs
* Threads:: Debugging programs with multiple threads
* Forks:: Debugging forks
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [multiprocess] RFA: fix menu in documentation
2008-11-21 22:54 ` Tom Tromey
@ 2008-11-22 5:06 ` Stan Shebs
2008-11-22 16:40 ` Tom Tromey
2008-11-22 5:29 ` Eli Zaretskii
1 sibling, 1 reply; 7+ messages in thread
From: Stan Shebs @ 2008-11-22 5:06 UTC (permalink / raw)
To: Tom Tromey; +Cc: gdb-patches
Tom Tromey wrote:
>>>>>> "Tom" == Tom Tromey <tromey@redhat.com> writes:
>>>>>>
>
> Tom> +* Inferiors:: Debugging Multiple Inferiors
> Tom> * Multiple Programs:: Debugging multiple programs
>
> Pedro pointed out the goofy capitalization here -- I had just copied
> the @section and not noticed this. Here's a better patch.
>
This is fine, thanks! Feel free to make obvious fixes on the branch, as
long as they are to the changed bits, otherwise it's kind of pointless. :-)
Stan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [multiprocess] RFA: fix menu in documentation
2008-11-22 5:06 ` Stan Shebs
@ 2008-11-22 16:40 ` Tom Tromey
0 siblings, 0 replies; 7+ messages in thread
From: Tom Tromey @ 2008-11-22 16:40 UTC (permalink / raw)
To: Stan Shebs; +Cc: gdb-patches
>>>>> "Stan" == Stan Shebs <stan@codesourcery.com> writes:
Stan> This is fine, thanks! Feel free to make obvious fixes on the branch,
Stan> as long as they are to the changed bits, otherwise it's kind of
Stan> pointless. :-)
Thanks, I've checked it in, after removing the tabs.
Tom
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [multiprocess] RFA: fix menu in documentation
2008-11-21 22:54 ` Tom Tromey
2008-11-22 5:06 ` Stan Shebs
@ 2008-11-22 5:29 ` Eli Zaretskii
1 sibling, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2008-11-22 5:29 UTC (permalink / raw)
To: Tom Tromey; +Cc: gdb-patches
> From: Tom Tromey <tromey@redhat.com>
> Date: Fri, 21 Nov 2008 09:41:24 -0700
>
> Pedro pointed out the goofy capitalization here -- I had just copied
> the @section and not noticed this. Here's a better patch.
Still with TABs.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [multiprocess] RFA: fix menu in documentation
2008-11-21 22:37 [multiprocess] RFA: fix menu in documentation Tom Tromey
2008-11-21 22:54 ` Tom Tromey
@ 2008-11-22 5:12 ` Eli Zaretskii
2008-11-22 16:39 ` Tom Tromey
1 sibling, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2008-11-22 5:12 UTC (permalink / raw)
To: tromey; +Cc: gdb-patches
> From: Tom Tromey <tromey@redhat.com>
> Date: Fri, 21 Nov 2008 09:21:37 -0700
>
> I needed this to build the multiprocess branch.
Did the manual fail to build without this menu item? If not, what was
the problem?
> +* Inferiors:: Debugging Multiple Inferiors
Please don't use TAB characters in Texinfo files. (Emacs
automatically switches off indent-tabs-mode in Texinfo buffers, so I'm
guessing you didn't use Emacs.)
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-11-21 19:25 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-21 22:37 [multiprocess] RFA: fix menu in documentation Tom Tromey
2008-11-21 22:54 ` Tom Tromey
2008-11-22 5:06 ` Stan Shebs
2008-11-22 16:40 ` Tom Tromey
2008-11-22 5:29 ` Eli Zaretskii
2008-11-22 5:12 ` Eli Zaretskii
2008-11-22 16:39 ` Tom Tromey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox