Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1657 → Rev 1660

/uspace/trunk/libc/arch/mips32/include/context_offset.h
14,6 → 14,18
#define OFFSET_GP 0x2c
#define OFFSET_TLS 0x30
 
#define OFFSET_F20 0x34
#define OFFSET_F21 0x38
#define OFFSET_F22 0x3c
#define OFFSET_F23 0x40
#define OFFSET_F24 0x44
#define OFFSET_F25 0x48
#define OFFSET_F26 0x4c
#define OFFSET_F27 0x50
#define OFFSET_F28 0x54
#define OFFSET_F29 0x58
#define OFFSET_F30 0x5c
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/psthread.h
69,6 → 69,19
uint32_t s8;
uint32_t gp;
uint32_t tls; /* Thread local storage(=k1) */
 
uint32_t f20;
uint32_t f21;
uint32_t f22;
uint32_t f23;
uint32_t f24;
uint32_t f25;
uint32_t f26;
uint32_t f27;
uint32_t f28;
uint32_t f29;
uint32_t f30;
} context_t;
 
#endif