Changeset 399 for trunk/kernel/mm
- Timestamp:
- Aug 17, 2017, 11:48:49 AM (7 years ago)
- Location:
- trunk/kernel/mm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/vmm.c
r394 r399 975 975 printk("\n[ERROR] in %s : out of segment / process = %x / vpn = %x\n", 976 976 __FUNCTION__ , process->pid , vpn ); 977 return EINVAL;977 return error; 978 978 } 979 979 -
trunk/kernel/mm/vmm.h
r394 r399 263 263 /********************************************************************************************* 264 264 * This function checks that a given virtual address is contained in a registered vseg. 265 * - if the vseg is registered in local process VMM, it returns the local vseg pointer. 265 * It can be called by any thread running in any cluster: 266 * - if the vseg is registered in the local process VMM, it returns the local vseg pointer. 266 267 * - if the vseg is missing in local VMM, it uses a RPC to get it from the reference cluster, 267 268 * register it in local VMM and returns the local vseg pointer, if success.
Note: See TracChangeset
for help on using the changeset viewer.