public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* Alternative to deprecated_init_ui_hook?
@ 2005-11-01  5:35 Christopher Faylor
  2005-11-01 13:53 ` Daniel Jacobowitz
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Faylor @ 2005-11-01  5:35 UTC (permalink / raw)
  To: gdb

In cleaning up the cygwin gdb shared library handling, I'm now able to
use the "info sharedlibrary" command from solib.c.  Previously this
command was implemented in win32-nat.c but now that is no longer
necessary.

There was previously an alias for this command -- "info dll".  I'm not
having much luck adding this alias now because "info sharedlibrary"
is set up after _initialize_win32 is called in init.cc -- a standard
problem, IIRC.

I've resorted to using deprecated_init_ui_hook to set this alias and that
works but, given that the function begins with the word "deprectated", I
would rather not use this method.

Is there any other way to add this alias, though?  I don't see anything
obvious and I don't want to remove a command that cygwin gdb users may
have become accustomed to.

cgf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Alternative to deprecated_init_ui_hook?
  2005-11-01  5:35 Alternative to deprecated_init_ui_hook? Christopher Faylor
@ 2005-11-01 13:53 ` Daniel Jacobowitz
  2005-11-01 14:37   ` Christopher Faylor
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Jacobowitz @ 2005-11-01 13:53 UTC (permalink / raw)
  To: gdb

On Tue, Nov 01, 2005 at 12:35:36AM -0500, Christopher Faylor wrote:
> In cleaning up the cygwin gdb shared library handling, I'm now able to
> use the "info sharedlibrary" command from solib.c.  Previously this
> command was implemented in win32-nat.c but now that is no longer
> necessary.
> 
> There was previously an alias for this command -- "info dll".  I'm not
> having much luck adding this alias now because "info sharedlibrary"
> is set up after _initialize_win32 is called in init.cc -- a standard
> problem, IIRC.
> 
> I've resorted to using deprecated_init_ui_hook to set this alias and that
> works but, given that the function begins with the word "deprectated", I
> would rather not use this method.
> 
> Is there any other way to add this alias, though?  I don't see anything
> obvious and I don't want to remove a command that cygwin gdb users may
> have become accustomed to.

Could you register it as a command rather than an alias, by exporting
the implementing function from solib.c?

-- 
Daniel Jacobowitz
CodeSourcery, LLC

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Alternative to deprecated_init_ui_hook?
  2005-11-01 13:53 ` Daniel Jacobowitz
@ 2005-11-01 14:37   ` Christopher Faylor
  2005-11-01 16:25     ` Daniel Jacobowitz
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Faylor @ 2005-11-01 14:37 UTC (permalink / raw)
  To: gdb

On Tue, Nov 01, 2005 at 08:52:52AM -0500, Daniel Jacobowitz wrote:
>On Tue, Nov 01, 2005 at 12:35:36AM -0500, Christopher Faylor wrote:
>>In cleaning up the cygwin gdb shared library handling, I'm now able to
>>use the "info sharedlibrary" command from solib.c.  Previously this
>>command was implemented in win32-nat.c but now that is no longer
>>necessary.
>>
>>There was previously an alias for this command -- "info dll".  I'm not
>>having much luck adding this alias now because "info sharedlibrary" is
>>set up after _initialize_win32 is called in init.cc -- a standard
>>problem, IIRC.
>>
>>I've resorted to using deprecated_init_ui_hook to set this alias and
>>that works but, given that the function begins with the word
>>"deprectated", I would rather not use this method.
>>
>>Is there any other way to add this alias, though?  I don't see anything
>>obvious and I don't want to remove a command that cygwin gdb users may
>>have become accustomed to.
>
>Could you register it as a command rather than an alias, by exporting
>the implementing function from solib.c?

Yes, if the function in solib.c was made global, I could just call it in
win32-nat.c.  That seems "wrong" somehow, though.

cgf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Alternative to deprecated_init_ui_hook?
  2005-11-01 14:37   ` Christopher Faylor
@ 2005-11-01 16:25     ` Daniel Jacobowitz
  0 siblings, 0 replies; 4+ messages in thread
From: Daniel Jacobowitz @ 2005-11-01 16:25 UTC (permalink / raw)
  To: gdb

On Tue, Nov 01, 2005 at 09:37:24AM -0500, Christopher Faylor wrote:
> On Tue, Nov 01, 2005 at 08:52:52AM -0500, Daniel Jacobowitz wrote:
> >On Tue, Nov 01, 2005 at 12:35:36AM -0500, Christopher Faylor wrote:
> >>In cleaning up the cygwin gdb shared library handling, I'm now able to
> >>use the "info sharedlibrary" command from solib.c.  Previously this
> >>command was implemented in win32-nat.c but now that is no longer
> >>necessary.
> >>
> >>There was previously an alias for this command -- "info dll".  I'm not
> >>having much luck adding this alias now because "info sharedlibrary" is
> >>set up after _initialize_win32 is called in init.cc -- a standard
> >>problem, IIRC.
> >>
> >>I've resorted to using deprecated_init_ui_hook to set this alias and
> >>that works but, given that the function begins with the word
> >>"deprectated", I would rather not use this method.
> >>
> >>Is there any other way to add this alias, though?  I don't see anything
> >>obvious and I don't want to remove a command that cygwin gdb users may
> >>have become accustomed to.
> >
> >Could you register it as a command rather than an alias, by exporting
> >the implementing function from solib.c?
> 
> Yes, if the function in solib.c was made global, I could just call it in
> win32-nat.c.  That seems "wrong" somehow, though.

I think you need to either do that, or else add the "info dll" alias in
solib.c.  Neither pretty.

-- 
Daniel Jacobowitz
CodeSourcery, LLC

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-11-01 16:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-01  5:35 Alternative to deprecated_init_ui_hook? Christopher Faylor
2005-11-01 13:53 ` Daniel Jacobowitz
2005-11-01 14:37   ` Christopher Faylor
2005-11-01 16:25     ` Daniel Jacobowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).