summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/memfile.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 08:39:22 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 08:39:22 +0000
commit3b2c47300abf5a0b1fe36e0b758c7f2512a846b3 (patch)
treeed38cae5f74907752a3f04e509dab14d954c7935 /cpukit/libfs/src/imfs/memfile.c
parentRemove stray white spaces. (diff)
downloadrtems-3b2c47300abf5a0b1fe36e0b758c7f2512a846b3.tar.bz2
2004-04-17 Ralf Corsepius <ralf_corsepius@rtems.org>
* libfs/src/imfs/imfs_debug.c, libfs/src/imfs/memfile.c: Use fprintf(stdout,...) instead of printf.
Diffstat (limited to '')
-rw-r--r--cpukit/libfs/src/imfs/memfile.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/cpukit/libfs/src/imfs/memfile.c b/cpukit/libfs/src/imfs/memfile.c
index 531caaa1fb..1a68531c38 100644
--- a/cpukit/libfs/src/imfs/memfile.c
+++ b/cpukit/libfs/src/imfs/memfile.c
@@ -354,7 +354,7 @@ MEMFILE_STATIC int IMFS_memfile_addblock(
return 0;
#if 0
- printf( "%d %p", block, block_entry_ptr );
+ fprintf(stdout, "%d %p", block, block_entry_ptr );
fflush(stdout);
#endif
@@ -778,7 +778,7 @@ MEMFILE_STATIC ssize_t IMFS_memfile_write(
if ( !block_ptr )
return copied;
#if 0
-printf( "write %d at %d in %d: %*s\n", to_copy, start_offset, block, to_copy, src );
+fprintf(stdout, "write %d at %d in %d: %*s\n", to_copy, start_offset, block, to_copy, src );
#endif
memcpy( &(*block_ptr)[ start_offset ], src, to_copy );
src += to_copy;
@@ -798,7 +798,7 @@ printf( "write %d at %d in %d: %*s\n", to_copy, start_offset, block, to_copy, sr
if ( !block_ptr )
return copied;
#if 0
-printf( "write %d in %d: %*s\n", to_copy, block, to_copy, src );
+fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
#endif
memcpy( &(*block_ptr)[ 0 ], src, to_copy );
src += to_copy;
@@ -820,7 +820,7 @@ printf( "write %d in %d: %*s\n", to_copy, block, to_copy, src );
if ( !block_ptr )
return copied;
#if 0
-printf( "write %d in %d: %*s\n", to_copy, block, to_copy, src );
+fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
#endif
memcpy( &(*block_ptr)[ 0 ], src, my_length );
my_length = 0;
@@ -856,7 +856,7 @@ block_p *IMFS_memfile_get_block_pointer(
block_p *p;
p = IMFS_memfile_get_block_pointer_DEBUG( the_jnode, block, malloc_it );
- printf( "(%d -> %p) ", block, p );
+ fprintf(stdout, "(%d -> %p) ", block, p );
return p;
}
@@ -900,7 +900,7 @@ block_p *IMFS_memfile_get_block_pointer(
if ( my_block <= LAST_INDIRECT ) {
#if 0
-printf( "(s %d) ", block );
+fprintf(stdout, "(s %d) ", block );
fflush(stdout);
#endif
p = info->indirect;
@@ -928,7 +928,7 @@ fflush(stdout);
if ( my_block <= LAST_DOUBLY_INDIRECT ) {
#if 0
-printf( "(d %d) ", block );
+fprintf(stdout, "(d %d) ", block );
fflush(stdout);
#endif
@@ -966,7 +966,7 @@ fflush(stdout);
return 0;
#if 0
-printf( "(d %d %d %d %d %p %p) ", block, my_block, doubly,
+fprintf(stdout, "(d %d %d %d %d %p %p) ", block, my_block, doubly,
singly, p, &p[singly] );
fflush(stdout);
#endif
@@ -974,7 +974,7 @@ fflush(stdout);
}
#if 0
-printf( "(t %d) ", block );
+fprintf(stdout, "(t %d) ", block );
fflush(stdout);
#endif
/*
@@ -1021,7 +1021,7 @@ fflush(stdout);
return 0;
#if 0
-printf( "(t %d %d %d %d %d) ", block, my_block, triply, doubly, singly );
+fprintf(stdout, "(t %d %d %d %d %d) ", block, my_block, triply, doubly, singly );
fflush(stdout);
#endif
p1 = (block_p *) p[ triply ];
@@ -1072,7 +1072,7 @@ void memfile_free_block(
)
{
#if 0
-printf( "(d %p) ", memory );
+fprintf(stdout, "(d %p) ", memory );
fflush(stdout);
#endif
free(memory);