From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eli Zaretskii" To: dmj+@andrew.cmu.edu Cc: gdb-patches@sources.redhat.com Subject: Re: [rfa] signals 1/3 - move target_signal handling out of target.c Date: Wed, 18 Jul 2001 13:42:00 -0000 Message-id: <9003-Wed18Jul2001230900+0300-eliz@is.elta.co.il> References: <20010718110700.A1064@nevyn.them.org> X-SW-Source: 2001-07/msg00454.html > Date: Wed, 18 Jul 2001 11:07:00 -0700 > From: Daniel Jacobowitz > > * target.c (struct signals): Move to signals.c. > * target.c (target_signal_to_name): Likewise. > * target.c (target_signal_from_name): Likewise. > * target.c (target_signal_from_host): Likewise. > * target.c (do_target_signal_to_host): Likewise. > * target.c (target_signal_to_host_p): Likewise. > * target.c (target_signal_to_host): Likewise. > * target.c (target_signal_from_command): Likewise. This should be one entry, not half a dozen entries: * target.c (struct signals, target_signal_to_name) (target_signal_from_name, target_signal_from_host) (do_target_signal_to_host, target_signal_to_host_p) (target_signal_to_host, target_signal_from_command): Move to signals.c. > * target.c (initialize_targets): Move check of > struct signals to... And this should not state the file name, since it's the same as the previous entries: (initialize_targets): Move check of struct signals to... The GNU coding standards have more details about formatting ChangeLog entries.