[xtensa-cvscommit] linux/arch/xtensa/tools offset.c,1.2,1.3
Brought to you by:
zankel
|
From: <ma...@us...> - 2003-02-07 02:03:38
|
Update of /cvsroot/xtensa/linux/arch/xtensa/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv27017/arch/xtensa/tools
Modified Files:
offset.c
Log Message:
Implement TIE support in elf_fpregset_t for core dumps and ptrace.
The elf_fpregset_t contains coprocessor and non-coprocessor custom
state, as well as a table describing its layout for use by GDB.
Also add experimental traceback code on panic's (untested, but doesn't
break anything).
Index: offset.c
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/tools/offset.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** offset.c 22 Oct 2002 17:59:47 -0000 1.2
--- offset.c 7 Feb 2003 02:03:35 -0000 1.3
***************
*** 97,102 ****
offset("#define THREAD_AREG1 ", struct task_struct, thread.areg1);
offset("#define THREAD_CURRENT_DS ", struct task_struct, thread.current_ds);
- offset("#define THREAD_EXTRA ", struct task_struct, thread.extra);
offset("#define THREAD_CPREGS_PTR ", struct task_struct, thread.cpregs_ptr);
linefeed;
}
--- 97,102 ----
offset("#define THREAD_AREG1 ", struct task_struct, thread.areg1);
offset("#define THREAD_CURRENT_DS ", struct task_struct, thread.current_ds);
offset("#define THREAD_CPREGS_PTR ", struct task_struct, thread.cpregs_ptr);
+ offset("#define THREAD_CPEXTRA ", struct task_struct, thread.cpextra);
linefeed;
}
|