summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-12-06 15:45:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-12-06 15:45:37 +0000
commit922a7236f0f49243a5a8aad4309a5e249ff61ee9 (patch)
treeff9308ef1ee65ab4a07f76017890f9d61dc42749 /c
parent2000-12-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-922a7236f0f49243a5a8aad4309a5e249ff61ee9.tar.bz2
2000-12-06 Joel Sherrill <joel@OARcorp.com>
* libc/mallocfreespace.c: Name of routine is rtems_region_get_information() NOT region_get_information(). * libc/unmount.c: Removed unused variable.
Diffstat (limited to 'c')
-rw-r--r--c/src/exec/libcsupport/src/mallocfreespace.c2
-rw-r--r--c/src/exec/libcsupport/src/unmount.c1
-rw-r--r--c/src/lib/ChangeLog6
-rw-r--r--c/src/lib/libc/mallocfreespace.c2
-rw-r--r--c/src/lib/libc/unmount.c1
5 files changed, 8 insertions, 4 deletions
diff --git a/c/src/exec/libcsupport/src/mallocfreespace.c b/c/src/exec/libcsupport/src/mallocfreespace.c
index 6e65981df8..bd0ffc829e 100644
--- a/c/src/exec/libcsupport/src/mallocfreespace.c
+++ b/c/src/exec/libcsupport/src/mallocfreespace.c
@@ -33,7 +33,7 @@ size_t malloc_free_space( void )
{
region_information_block heap_info;
- if ( region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
+ if ( rtems_region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
return (size_t) heap_info.free_size;
}
return (size_t) -1;
diff --git a/c/src/exec/libcsupport/src/unmount.c b/c/src/exec/libcsupport/src/unmount.c
index d782080085..9bdfb2c38c 100644
--- a/c/src/exec/libcsupport/src/unmount.c
+++ b/c/src/exec/libcsupport/src/unmount.c
@@ -152,7 +152,6 @@ int file_systems_below_this_mountpoint(
{
Chain_Node *the_node;
rtems_filesystem_mount_table_entry_t *the_mount_entry;
- rtems_filesystem_mount_table_entry_t *current_fs_mt_entry;
/*
* Is the path even a valid node name in the existing tree?
diff --git a/c/src/lib/ChangeLog b/c/src/lib/ChangeLog
index 9459dcf1c0..cc3844081e 100644
--- a/c/src/lib/ChangeLog
+++ b/c/src/lib/ChangeLog
@@ -1,4 +1,10 @@
+2000-12-06 Joel Sherrill <joel@OARcorp.com>
+
+ * libc/mallocfreespace.c: Name of routine is
+ rtems_region_get_information() NOT region_get_information().
+ * libc/unmount.c: Removed unused variable.
+
2000-11-30 Joel Sherrill <joel@OARcorp.com>
* include/rtems/Makefile.am: Added termiostypes.h.
diff --git a/c/src/lib/libc/mallocfreespace.c b/c/src/lib/libc/mallocfreespace.c
index 6e65981df8..bd0ffc829e 100644
--- a/c/src/lib/libc/mallocfreespace.c
+++ b/c/src/lib/libc/mallocfreespace.c
@@ -33,7 +33,7 @@ size_t malloc_free_space( void )
{
region_information_block heap_info;
- if ( region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
+ if ( rtems_region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
return (size_t) heap_info.free_size;
}
return (size_t) -1;
diff --git a/c/src/lib/libc/unmount.c b/c/src/lib/libc/unmount.c
index d782080085..9bdfb2c38c 100644
--- a/c/src/lib/libc/unmount.c
+++ b/c/src/lib/libc/unmount.c
@@ -152,7 +152,6 @@ int file_systems_below_this_mountpoint(
{
Chain_Node *the_node;
rtems_filesystem_mount_table_entry_t *the_mount_entry;
- rtems_filesystem_mount_table_entry_t *current_fs_mt_entry;
/*
* Is the path even a valid node name in the existing tree?