Changeset 566 for trunk/kernel/syscalls/sys_trace.c
- Timestamp:
- Oct 4, 2018, 11:50:21 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_trace.c
r457 r566 62 62 63 63 // check core local index 64 ncores = hal_remote_l w( XPTR( cxy , &LOCAL_CLUSTER->cores_nr ) );64 ncores = hal_remote_l32( XPTR( cxy , &LOCAL_CLUSTER->cores_nr ) ); 65 65 if( lid >= ncores ) 66 66 { … … 80 80 xptr_t trace_xp = XPTR( cxy , &core->scheduler.trace ); 81 81 82 if ( active ) hal_remote_s w( trace_xp , 1 );83 else hal_remote_s w( trace_xp , 0 );82 if ( active ) hal_remote_s32( trace_xp , 1 ); 83 else hal_remote_s32( trace_xp , 0 ); 84 84 85 85 hal_fence();
Note: See TracChangeset
for help on using the changeset viewer.