Subversion Repositories HelenOS

Rev

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

Rev 68 Rev 72
Line 54... Line 54...
54
 
54
 
55
void vm_destroy(vm_t *m)
55
void vm_destroy(vm_t *m)
56
{
56
{
57
}
57
}
58
 
58
 
59
vm_area_t *vm_area_create(vm_t *m, vm_type_t type, int size, __address addr)
59
vm_area_t *vm_area_create(vm_t *m, vm_type_t type, size_t size, __address addr)
60
{
60
{
61
    pri_t pri;
61
    pri_t pri;
62
    vm_area_t *a;
62
    vm_area_t *a;
63
   
63
   
64
    if (addr % PAGE_SIZE)
64
    if (addr % PAGE_SIZE)