Changeset 101 for trunk/kernel/kern/cluster.c
- Timestamp:
- Jun 29, 2017, 4:44:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/cluster.c
r50 r101 103 103 104 104 cluster_dmsg("\n[INFO] %s : PPM initialized in cluster %x at cycle %d\n", 105 __FUNCTION__ , local_cxy , hal_ time_stamp() );105 __FUNCTION__ , local_cxy , hal_get_cycles() ); 106 106 107 107 // initialises embedded KHM … … 109 109 110 110 cluster_dmsg("\n[INFO] %s : KHM initialized in cluster %x at cycle %d\n", 111 __FUNCTION__ , local_cxy , hal_ time_stamp() );111 __FUNCTION__ , local_cxy , hal_get_cycles() ); 112 112 113 113 // initialises embedded KCM … … 115 115 116 116 cluster_dmsg("\n[INFO] %s : KCM initialized in cluster %x at cycle %d\n", 117 __FUNCTION__ , local_cxy , hal_ time_stamp() );117 __FUNCTION__ , local_cxy , hal_get_cycles() ); 118 118 119 119 // initialises all cores descriptors … … 126 126 127 127 cluster_dmsg("\n[INFO] %s : cores initialized in cluster %x at cycle %d\n", 128 __FUNCTION__ , local_cxy , hal_ time_stamp() );128 __FUNCTION__ , local_cxy , hal_get_cycles() ); 129 129 130 130 // initialises RPC fifo … … 132 132 133 133 cluster_dmsg("\n[INFO] %s : RPC fifo inialized in cluster %x at cycle %d\n", 134 __FUNCTION__ , local_cxy , hal_ time_stamp() );134 __FUNCTION__ , local_cxy , hal_get_cycles() ); 135 135 136 136 // initialise pref_tbl[] in process manager … … 149 149 150 150 // initialise copies_lists in process manager 151 for( lpid = 1; lpid < CONFIG_MAX_PROCESS_PER_CLUSTER ; lpid++ )151 for( lpid = 0 ; lpid < CONFIG_MAX_PROCESS_PER_CLUSTER ; lpid++ ) 152 152 { 153 153 remote_spinlock_init( XPTR( local_cxy , &cluster->pmgr.copies_lock[lpid] ) ); … … 157 157 158 158 cluster_dmsg("\n[INFO] %s Process Manager initialized in cluster %x at cycle %d\n", 159 __FUNCTION__ , local_cxy , hal_ time_stamp() );159 __FUNCTION__ , local_cxy , hal_get_cycles() ); 160 160 161 161 hal_wbflush();
Note: See TracChangeset
for help on using the changeset viewer.