Changeset 473 for trunk/user/sort/sort.c
- Timestamp:
- Aug 21, 2018, 6:01:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user/sort/sort.c
r469 r473 64 64 unsigned int init_pos ) 65 65 { 66 int i;67 int j;68 int aux;66 unsigned int i; 67 unsigned int j; 68 int aux; 69 69 70 70 for(i = 0; i < length; i++) … … 263 263 } 264 264 265 get_cycle( &cycle ); 266 printf("\n[SORT] main completes barrier init at cycle %d\n", (unsigned int)cycle ); 265 printf("\n[SORT] main completes barrier init\n"); 267 266 268 267 // Array to sort initialization … … 277 276 #endif 278 277 279 get_cycle( &cycle ); 280 printf("\n[SORT] main completes array init at cycle %d\n", (unsigned int)cycle ); 278 printf("\n[SORT] main completes array init\n"); 281 279 282 280 // launch other threads to execute sort() function
Note: See TracChangeset
for help on using the changeset viewer.