Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2331 → Rev 2332

/branches/arm/uspace/libc/arch/arm32/include/psthread.h
49,16 → 49,14
typedef struct {
uint32_t sp;
uint32_t pc;
uint32_t tls; //? where will be stored?
// registers that called subrutine cannot change
uint32_t r4;
uint32_t r5;
uint32_t r6;
uint32_t r7;
uint32_t r8;
uint32_t tls;
uint32_t r10;
uint32_t r11;
// not shure if not to be changed r9, IP,
} context_t;
 
#endif