Changeset 399 for trunk/kernel


Ignore:
Timestamp:
Aug 17, 2017, 11:48:49 AM (7 years ago)
Author:
alain
Message:

cosmetic

Location:
trunk/kernel/mm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/mm/vmm.c

    r394 r399  
    975975            printk("\n[ERROR] in %s : out of segment / process = %x / vpn = %x\n",
    976976                   __FUNCTION__ , process->pid , vpn );
    977             return EINVAL;
     977            return error;
    978978        }
    979979
  • trunk/kernel/mm/vmm.h

    r394 r399  
    263263/*********************************************************************************************
    264264 * 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.
    266267 * - if the vseg is missing in local VMM, it uses a RPC to get it from the reference cluster,
    267268 *   register it in local VMM and returns the local vseg pointer, if success.
Note: See TracChangeset for help on using the changeset viewer.