Changeset 922a723 in rtems


Ignore:
Timestamp:
12/06/00 15:45:37 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
f4b46c6
Parents:
dbcd1be
Message:

2000-12-06 Joel Sherrill <joel@…>

  • libc/mallocfreespace.c: Name of routine is rtems_region_get_information() NOT region_get_information().
  • libc/unmount.c: Removed unused variable.
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libcsupport/src/mallocfreespace.c

    rdbcd1be r922a723  
    3434  region_information_block   heap_info;
    3535
    36   if ( region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
     36  if ( rtems_region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
    3737    return (size_t) heap_info.free_size;
    3838  }
  • c/src/exec/libcsupport/src/unmount.c

    rdbcd1be r922a723  
    153153  Chain_Node                           *the_node;
    154154  rtems_filesystem_mount_table_entry_t *the_mount_entry;
    155   rtems_filesystem_mount_table_entry_t *current_fs_mt_entry;
    156155
    157156  /*
  • c/src/lib/ChangeLog

    rdbcd1be r922a723  
     1
     22000-12-06      Joel Sherrill <joel@OARcorp.com>
     3
     4        * libc/mallocfreespace.c: Name of routine is
     5        rtems_region_get_information() NOT region_get_information().
     6        * libc/unmount.c: Removed unused variable.
    17
    282000-11-30      Joel Sherrill <joel@OARcorp.com>
  • c/src/lib/libc/mallocfreespace.c

    rdbcd1be r922a723  
    3434  region_information_block   heap_info;
    3535
    36   if ( region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
     36  if ( rtems_region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
    3737    return (size_t) heap_info.free_size;
    3838  }
  • c/src/lib/libc/unmount.c

    rdbcd1be r922a723  
    153153  Chain_Node                           *the_node;
    154154  rtems_filesystem_mount_table_entry_t *the_mount_entry;
    155   rtems_filesystem_mount_table_entry_t *current_fs_mt_entry;
    156155
    157156  /*
  • cpukit/libcsupport/src/mallocfreespace.c

    rdbcd1be r922a723  
    3434  region_information_block   heap_info;
    3535
    36   if ( region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
     36  if ( rtems_region_get_information( RTEMS_Malloc_Heap, &heap_info ) ) {
    3737    return (size_t) heap_info.free_size;
    3838  }
  • cpukit/libcsupport/src/unmount.c

    rdbcd1be r922a723  
    153153  Chain_Node                           *the_node;
    154154  rtems_filesystem_mount_table_entry_t *the_mount_entry;
    155   rtems_filesystem_mount_table_entry_t *current_fs_mt_entry;
    156155
    157156  /*
Note: See TracChangeset for help on using the changeset viewer.