From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Eli Zaretskii Cc: gdb-patches@sources.redhat.com Subject: Re: [obish?sym;rfa:doc] Wire up vsyscall Date: Mon, 17 May 2004 20:10:00 -0000 Message-id: <40A91C36.7000900@gnu.org> References: <409A8C2A.2010605@gnu.org> X-SW-Source: 2004-05/msg00505.html Eli, How does the doco here look? (everone appears ok on this part of the mechanism). Andrew 2004-05-10 Andrew Cagney * observer.texi (GDB Observers): Document "inferior_created". Index: doc/observer.texi =================================================================== RCS file: /cvs/src/src/gdb/doc/observer.texi,v retrieving revision 1.6 diff -p -u -r1.6 observer.texi --- doc/observer.texi 7 May 2004 22:51:55 -0000 1.6 +++ doc/observer.texi 17 May 2004 20:05:44 -0000 @@ -82,3 +82,11 @@ The inferior has stopped for real. @deftypefun void target_changed (struct target_ops *@var{target}) The target's register contents have changed. @end deftypefun + +@deftypefun void inferior_created (struct target_ops *@var{objfile}, int @var{from_tty}) +@var{GDBN} has just created to a new inferior. For @samp{run}, it is +called while the inferior is still stopped at the entry-point +instruction. For @samp{attach} and @samp{core}, it is called +immediatly after opening the inferior (and before any information on +the inferior has been printed). +@end deftypefun >From kevinb@redhat.com Mon May 17 20:19:00 2004 From: Kevin Buettner To: gdb-patches@sources.redhat.com Subject: Re: [obish?sym;rfa:doc] Wire up vsyscall Date: Mon, 17 May 2004 20:19:00 -0000 Message-id: <20040517131914.332fa347@saguaro> References: <409A8C2A.2010605@gnu.org> <40A91C36.7000900@gnu.org> X-SW-Source: 2004-05/msg00506.html Content-length: 530 On Mon, 17 May 2004 16:10:30 -0400 Andrew Cagney wrote: > +@deftypefun void inferior_created (struct target_ops *@var{objfile}, int @var{from_tty}) > +@var{GDBN} has just created to a new inferior. For @samp{run}, it is > +called while the inferior is still stopped at the entry-point > +instruction. For @samp{attach} and @samp{core}, it is called > +immediatly after opening the inferior (and before any information on > +the inferior has been printed). > +@end deftypefun s/immediatly/immediately/ Kevin