Subversion Repositories HelenOS

Rev

Rev 1787 | Rev 1852 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1851
Line 50... Line 50...
50
 
50
 
51
#define trap_virtual_enable_irqs(x)
51
#define trap_virtual_enable_irqs(x)
52
#define trap_virtual_eoi()
52
#define trap_virtual_eoi()
53
 
53
 
54
struct istate {
54
struct istate {
-
 
55
    uint64_t    pstate;
-
 
56
    uint64_t    tnpc;
-
 
57
    uint64_t    tpc;
-
 
58
    uint64_t    tstate;
55
};
59
};
56
 
60
 
57
static inline void istate_set_retaddr(istate_t *istate, uintptr_t retaddr)
61
static inline void istate_set_retaddr(istate_t *istate, uintptr_t retaddr)
58
{
62
{
59
    /* TODO */
63
    /* TODO */
Line 74... Line 78...
74
 
78
 
75
#endif
79
#endif
76
 
80
 
77
 /** @}
81
/** @}
78
 */
82
 */
79
 
-