Subversion Repositories HelenOS

Rev

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

Rev 3790 Rev 3908
Line 91... Line 91...
91
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
91
    last_frame = ALIGN_UP(last_frame + size, FRAME_SIZE);
92
   
92
   
93
    return virtaddr;
93
    return virtaddr;
94
}
94
}
95
 
95
 
-
 
96
void hw_area(uintptr_t *physaddr, pfn_t *frames)
-
 
97
{
-
 
98
    *physaddr = end_frame;
-
 
99
    *frames = ADDR2PFN(0xffffffff - end_frame);
-
 
100
}
-
 
101
 
96
void page_fault(int n __attribute__((unused)), istate_t *istate)
102
void page_fault(int n __attribute__((unused)), istate_t *istate)
97
{
103
{
98
    uintptr_t page;
104
    uintptr_t page;
99
    pf_access_t access;
105
    pf_access_t access;
100
   
106