Skip to content
Snippets Groups Projects
Commit 125fca9f authored by Wilke Pierre's avatar Wilke Pierre
Browse files

allocate_if_possible default return value

parent a7e51183
No related branches found
No related tags found
No related merge requests found
......@@ -378,11 +378,11 @@ int load_from_file(char* file,
}
int allocate_if_possible(pagetable_t pagetable, struct proc* p, uint64 addr){
return 0;
return ENOVMA;
}
int allocate_if_possible_range(pagetable_t pagetable, struct proc* p, uint64 addr, uint64 len){
return 0;
return ENOVMA;
}
// Copy from kernel to user.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment