[xtensa-cvscommit] linux/include/asm-xtensa sigcontext.h,1.3,1.4
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-04-25 16:48:23
|
Update of /cvsroot/xtensa/linux/include/asm-xtensa
In directory sc8-pr-cvs1:/tmp/cvs-serv959/include/asm-xtensa
Modified Files:
sigcontext.h
Log Message:
Add alignment directive to cpstate. It probably doesn't affect linux_be/le/test, but will definitely affect other processor configurations.
Index: sigcontext.h
===================================================================
RCS file: /cvsroot/xtensa/linux/include/asm-xtensa/sigcontext.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** sigcontext.h 23 Apr 2003 23:19:56 -0000 1.3
--- sigcontext.h 25 Apr 2003 16:48:16 -0000 1.4
***************
*** 20,24 ****
struct _cpstate {
unsigned char _cpstate[TOTAL_CPEXTRA_SIZE];
! };
struct sigcontext {
--- 20,25 ----
struct _cpstate {
unsigned char _cpstate[TOTAL_CPEXTRA_SIZE];
! } __attribute__ ((aligned (XCHAL_CPEXTRA_SA_ALIGN)));
!
struct sigcontext {
|