Changeset 53462762 in rtems
- Timestamp:
- 04/20/01 13:27:24 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a5bdcd98
- Parents:
- b85df34
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libfs/ChangeLog
rb85df34 r53462762 1 2001-04-20 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/imfs_debug.c (IMFS_print_jnode): Modified to print 4 only information that does not vary based on target or memory 5 configuration. The old prints are still there in case they 6 are needed in the future to debug. Printing target dependent 7 addresses makes the test output vary by target unnecessarily. 8 1 9 2001-03-23 Joel Sherrill <joel@OARcorp.com> 2 10 -
c/src/exec/libfs/src/imfs/imfs_debug.c
rb85df34 r53462762 74 74 75 75 case IMFS_MEMORY_FILE: 76 /* Useful when debugging .. varies between targets */ 77 #if 0 76 78 printf( " (file %d %p %p %p)", 77 79 (int)the_jnode->info.file.size, … … 80 82 the_jnode->info.file.triply_indirect 81 83 ); 84 #else 85 printf( " (file %d)", (int)the_jnode->info.file.size ); 86 #endif 82 87 break; 83 88 -
c/src/libfs/ChangeLog
rb85df34 r53462762 1 2001-04-20 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/imfs_debug.c (IMFS_print_jnode): Modified to print 4 only information that does not vary based on target or memory 5 configuration. The old prints are still there in case they 6 are needed in the future to debug. Printing target dependent 7 addresses makes the test output vary by target unnecessarily. 8 1 9 2001-03-23 Joel Sherrill <joel@OARcorp.com> 2 10 -
c/src/libfs/src/imfs/imfs_debug.c
rb85df34 r53462762 74 74 75 75 case IMFS_MEMORY_FILE: 76 /* Useful when debugging .. varies between targets */ 77 #if 0 76 78 printf( " (file %d %p %p %p)", 77 79 (int)the_jnode->info.file.size, … … 80 82 the_jnode->info.file.triply_indirect 81 83 ); 84 #else 85 printf( " (file %d)", (int)the_jnode->info.file.size ); 86 #endif 82 87 break; 83 88 -
cpukit/libfs/ChangeLog
rb85df34 r53462762 1 2001-04-20 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/imfs_debug.c (IMFS_print_jnode): Modified to print 4 only information that does not vary based on target or memory 5 configuration. The old prints are still there in case they 6 are needed in the future to debug. Printing target dependent 7 addresses makes the test output vary by target unnecessarily. 8 1 9 2001-03-23 Joel Sherrill <joel@OARcorp.com> 2 10 -
cpukit/libfs/src/imfs/imfs_debug.c
rb85df34 r53462762 74 74 75 75 case IMFS_MEMORY_FILE: 76 /* Useful when debugging .. varies between targets */ 77 #if 0 76 78 printf( " (file %d %p %p %p)", 77 79 (int)the_jnode->info.file.size, … … 80 82 the_jnode->info.file.triply_indirect 81 83 ); 84 #else 85 printf( " (file %d)", (int)the_jnode->info.file.size ); 86 #endif 82 87 break; 83 88
Note: See TracChangeset
for help on using the changeset viewer.