This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GDB record patch 0.1.3 for GDB-6.8 release (It make I386-Linux GDB support Reversible Debugging)


Hi Thiago,

You said:
> +/*teawater rec begin----------------------------------------------------------*/
> +	int (*intx80_record) (void);
> +	int (*sysenter_record) (void);
> +/*teawater rec end------------------------------------------------------------*/

The names above are specific to the x86 architecture. tdep members
should have a name which is meaningful accross different architectures.

I want change it to:
  int (*i386_intx80_record) (void);
  int (*i386_sysenter_record) (void);

Cound you please give me some advice?

Thanks,
teawater



On Sun, Apr 20, 2008 at 1:09 PM, Thiago Jung Bauermann
<bauerman@br.ibm.com> wrote:
> Hi Hui Zhu,
>
>
>  On Sun, 2008-04-20 at 10:34 +0800, Tea wrote:
>  > Thanks for your mail very much. It help me a lot. I am beginning to
>  > modify the patch according to your mail.
>
>  Great! Like Michael Snyder said, this is a very interesting feature, and
>  will be a significant addition to GDB.
>
>
>  > I am not very clear about " FSF copyright assignmentin place".Could
>  > you tell me something about it?
>
>  The Free Software Foundation chooses to retain copyright to all the code
>  in its projects, to ease license control and enforcing. Because of this,
>  contributors to an FSF project need to sign a document assigning the
>  copyright of their code which gets incorporated into a project. You can
>  find some information about it here:
>
>  http://www.gnu.org/licenses/why-assign.html
>
>  There are people in this list who can send you the paperwork and explain
>  the procedure in detail. I'm not one of them...
>
>
>  >  BTW: I didn't have any experience on this work. I will have a lot of
>  > questions about it. Please help me. Thanks a lot.
>
>  That's not a problem. Feel free to post questions and intermediate
>  patches to the list.
>  --
>
>
> []'s
>  Thiago Jung Bauermann
>  Software Engineer
>  IBM Linux Technology Center
>
>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]