Changeset 324 for trunk/kernel


Ignore:
Timestamp:
Aug 6, 2017, 8:36:33 AM (7 years ago)
Author:
max@…
Message:

The process xptr is already local, so no need to do a remote
load.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/process.c

    r281 r324  
    360360    process_t    * process_ptr;   // local pointer on process
    361361    xptr_t         process_xp;    // extended pointer on process
    362     pid_t          process_pid;   // process identifier
    363362
    364363    cluster_t * cluster = LOCAL_CLUSTER;
     
    374373        process_xp  = XLIST_ELEMENT( iter , process_t , local_list );
    375374        process_ptr = (process_t *)GET_PTR( process_xp );
    376         process_pid = hal_remote_lw( XPTR( local_cxy , &process_ptr->pid ) );
    377375        if( process_ptr->pid == pid )
    378376        {
Note: See TracChangeset for help on using the changeset viewer.