Changeset 94218b8 in rtems
- Timestamp:
- 09/18/96 20:51:48 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b1c215e
- Parents:
- 56e0b88
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/src/wkspace.c
r56e0b88 r94218b8 44 44 if ( _CPU_Table.do_zero_of_workspace ) { 45 45 for( zero_out_array = (unsigned32 *) starting_address, index = 0 ; 46 index < size / 4;46 index < size / sizeof( unsigned32 ) ; 47 47 index++ ) 48 48 zero_out_array[ index ] = 0; -
cpukit/score/src/wkspace.c
r56e0b88 r94218b8 44 44 if ( _CPU_Table.do_zero_of_workspace ) { 45 45 for( zero_out_array = (unsigned32 *) starting_address, index = 0 ; 46 index < size / 4;46 index < size / sizeof( unsigned32 ) ; 47 47 index++ ) 48 48 zero_out_array[ index ] = 0;
Note: See TracChangeset
for help on using the changeset viewer.