Changeset 101 for trunk/kernel/kern/rpc.c
- Timestamp:
- Jun 29, 2017, 4:44:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/rpc.c
r68 r101 1451 1451 1452 1452 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() ); 1454 1454 1455 1455 // update core descriptor counter … … 1461 1461 1462 1462 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() ); 1464 1464 1465 1465 // current thread deschedules / RPC thread start execution … … 1521 1521 1522 1522 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() ); 1524 1524 1525 1525 // this infinite loop is not preemptable … … 1546 1546 { 1547 1547 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() ); 1549 1549 1550 1550 // update core descriptor counter … … 1557 1557 // block and deschedule 1558 1558 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() ); 1560 1560 1561 1561 thread_block( this , THREAD_BLOCKED_IDLE ); … … 1563 1563 1564 1564 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() ); 1566 1566 } 1567 1567 } // end rpc_thread_func()
Note: See TracChangeset
for help on using the changeset viewer.