Fix ThreadContext definition

Its correct size is 0xcc bytes, not the 8-byte aligned 0xd0
This commit is contained in:
TuxSH 2017-03-06 18:29:32 +01:00 committed by fincs
parent e5fc424414
commit 65171be4d8

View File

@ -70,8 +70,8 @@ typedef struct {
/// Structure representing FPU registers /// Structure representing FPU registers
typedef struct { typedef struct {
union{ union {
double d[16]; ///< d0-d15. struct PACKED { double d[16]; }; ///< d0-d15.
float f[32]; ///< f0-f31. float f[32]; ///< f0-f31.
}; };
u32 fpscr; ///< fpscr. u32 fpscr; ///< fpscr.