Changeset 192259f in rtems
- Timestamp:
- 04/09/97 20:04:36 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3fc076d
- Parents:
- 48e34595
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/src/heap.c
r48e34595 r192259f 500 500 error = 1; 501 501 printf("PASS: %d Front and back flags don't match\n", source); 502 printf(" Current Block : Back - %d, Front - %d",503 the_block ->back_flag, the_block->front_flag);502 printf(" Current Block (%p): Back - %d, Front - %d", 503 the_block, the_block->back_flag, the_block->front_flag); 504 504 if (do_dump == TRUE) { 505 505 if (_Heap_Is_block_free(the_block)) { … … 512 512 printf("\n"); 513 513 } 514 printf(" Next Block : Back - %d, Front - %d",515 next_block ->back_flag, next_block->front_flag);514 printf(" Next Block (%p): Back - %d, Front - %d", 515 next_block, next_block->back_flag, next_block->front_flag); 516 516 if (do_dump == TRUE) { 517 517 if (_Heap_Is_block_free(next_block)) { -
cpukit/score/src/heap.c
r48e34595 r192259f 500 500 error = 1; 501 501 printf("PASS: %d Front and back flags don't match\n", source); 502 printf(" Current Block : Back - %d, Front - %d",503 the_block ->back_flag, the_block->front_flag);502 printf(" Current Block (%p): Back - %d, Front - %d", 503 the_block, the_block->back_flag, the_block->front_flag); 504 504 if (do_dump == TRUE) { 505 505 if (_Heap_Is_block_free(the_block)) { … … 512 512 printf("\n"); 513 513 } 514 printf(" Next Block : Back - %d, Front - %d",515 next_block ->back_flag, next_block->front_flag);514 printf(" Next Block (%p): Back - %d, Front - %d", 515 next_block, next_block->back_flag, next_block->front_flag); 516 516 if (do_dump == TRUE) { 517 517 if (_Heap_Is_block_free(next_block)) {
Note: See TracChangeset
for help on using the changeset viewer.