summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-16 14:39:25 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-16 14:39:25 +0000
commit9bc752b92d13624a22f0659e2fee6bece875ff3a (patch)
tree3b4f6050e49572683c9aa0c5d5e4d0baf752135e /cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h
parent2010-06-16 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9bc752b92d13624a22f0659e2fee6bece875ff3a.tar.bz2
2010-06-16 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1556/cpukit * libfs/src/rfs/rtems-rfs-bitmaps.h, libfs/src/rfs/rtems-rfs-block-pos.h, libfs/src/rfs/rtems-rfs-buffer.h, libfs/src/rfs/rtems-rfs-file-system-fwd.h, libfs/src/rfs/rtems-rfs-file-system.h, libfs/src/rfs/rtems-rfs-file.h, libfs/src/rfs/rtems-rfs-format.h, libfs/src/rfs/rtems-rfs-group.h, libfs/src/rfs/rtems-rfs-inode.h: Rename "struct rtems_rfs_*_t" into "struct _rtems_rfs_*".
Diffstat (limited to 'cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h')
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h b/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h
index 8fe9ab7c9b..c01ea9255a 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h
@@ -99,7 +99,7 @@ typedef rtems_rfs_bitmap_element* rtems_rfs_bitmap_map;
/**
* The bitmap control is a simple way to manage the various parts of a bitmap.
*/
-struct rtems_rfs_bitmap_control_t
+typedef struct _rtems_rfs_bitmap_control
{
rtems_rfs_buffer_handle* buffer; //< Handle the to buffer with the bit
//map.
@@ -110,9 +110,7 @@ struct rtems_rfs_bitmap_control_t
size_t free; //< Number of bits in the map that are
//free (clear).
rtems_rfs_bitmap_map search_bits; //< The search bit map memory.
-};
-
-typedef struct rtems_rfs_bitmap_control_t rtems_rfs_bitmap_control;
+} rtems_rfs_bitmap_control;
/**
* Return the number of bits for the number of bytes provided.