Ignore:
Timestamp:
Jun 29, 2017, 4:44:52 PM (7 years ago)
Author:
alain
Message:

euh...

File:
1 edited

Legend:

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

    r68 r101  
    14511451
    14521452        rpc_dmsg("\n[INFO] %s creates RPC thread %x on core %x in cluster %x at cycle %d\n",
    1453                           __FUNCTION__ , thread , core->gid , local_cxy , hal_time_stamp() );
     1453                          __FUNCTION__ , thread , core->gid , local_cxy , hal_get_cycles() );
    14541454
    14551455        // update core descriptor counter 
     
    14611461
    14621462    rpc_dmsg ("\n[INFO] %s activates RPC thread %x on core %x in cluster %x at cycle %d\n",
    1463                       __FUNCTION__ , thread , core->gid , local_cxy , hal_time_stamp() );
     1463                      __FUNCTION__ , thread , core->gid , local_cxy , hal_get_cycles() );
    14641464
    14651465    // current thread deschedules / RPC thread start execution
     
    15211521
    15221522    rpc_dmsg("\n[INFO] RPC thread %x created on core %d in cluster %x at cycle %d\n",
    1523              this->trdid , this->core->lid , local_cxy , hal_time_stamp() );
     1523             this->trdid , this->core->lid , local_cxy , hal_get_cycles() );
    15241524
    15251525    // this infinite loop is not preemptable
     
    15461546                {
    15471547            rpc_dmsg("\n[INFO] RPC thread %x suicide on core %d in cluster %x at cycle %d\n",
    1548                              this->trdid , this->core->lid , local_cxy , hal_time_stamp() );
     1548                             this->trdid , this->core->lid , local_cxy , hal_get_cycles() );
    15491549
    15501550            // update core descriptor counter
     
    15571557        // block and deschedule
    15581558        rpc_dmsg("\n[INFO] RPC thread %x deschedule on core %d in cluster %x at cycle %d\n",
    1559                               this->trdid , this->core->lid , local_cxy , hal_time_stamp() );
     1559                              this->trdid , this->core->lid , local_cxy , hal_get_cycles() );
    15601560
    15611561                thread_block( this , THREAD_BLOCKED_IDLE );
     
    15631563
    15641564                rpc_dmsg("\n[INFO] RPC thread %x wake up on core %d in cluster %x at cycle %d\n",
    1565                               this->trdid , this->core->lid , local_cxy , hal_time_stamp() );
     1565                              this->trdid , this->core->lid , local_cxy , hal_get_cycles() );
    15661566        }
    15671567} // end rpc_thread_func()
Note: See TracChangeset for help on using the changeset viewer.