Subversion Repositories HelenOS

Rev

Rev 2356 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2356 Rev 2357
Line 44... Line 44...
44
 
44
 
45
#ifndef __ASM__
45
#ifndef __ASM__
46
 
46
 
47
#include <arch/types.h>
47
#include <arch/types.h>
48
 
48
 
49
/* Struct containing registers that must be preserved across function calls. */
49
/** Thread context containing registers that must be preserved across function calls. */
50
typedef struct {
50
typedef struct {
51
    uint32_t cpu_mode;
51
    uint32_t cpu_mode;
52
    uintptr_t sp;
52
    uintptr_t sp;
53
    uintptr_t pc;
53
    uintptr_t pc;
54
   
54