Changeset 2668de20 in rtems
- Timestamp:
- Jun 17, 2010, 4:38:29 AM (9 years ago)
- Branches:
- 4.10
- Children:
- d25f741
- Parents:
- 5c8fa6a0
- Location:
- cpukit
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r5c8fa6a0 r2668de20 1 2010-06-17 Chris Johns <chrisj@rtems.org> 2 3 * libfs/src/rfs/rtems-rfs-bitmaps.h, 4 libfs/src/rfs/rtems-rfs-block-pos.h, 5 libfs/src/rfs/rtems-rfs-block.h: PR 1556. Struct clean up. 6 1 7 2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org> 2 8 -
cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h
r5c8fa6a0 r2668de20 100 100 * The bitmap control is a simple way to manage the various parts of a bitmap. 101 101 */ 102 typedef struct _rtems_rfs_bitmap_control102 typedef struct rtems_rfs_bitmap_control_s 103 103 { 104 104 rtems_rfs_buffer_handle* buffer; //< Handle the to buffer with the bit -
cpukit/libfs/src/rfs/rtems-rfs-block-pos.h
r5c8fa6a0 r2668de20 48 48 * cache. 49 49 */ 50 typedef struct _rtems_rfs_block_pos50 typedef struct rtems_rfs_block_pos_s 51 51 { 52 52 /** … … 111 111 * @return rtems_rfs_pos The absolute offset. 112 112 */ 113 rtems_rfs_pos rtems_rfs_block_get_pos (rtems_rfs_file_system* 114 rtems_rfs_block_pos* 113 rtems_rfs_pos rtems_rfs_block_get_pos (rtems_rfs_file_system* fs, 114 rtems_rfs_block_pos* bpos); 115 115 116 116 /** … … 137 137 * offset must be less than the block size. 138 138 */ 139 typedef struct _rtems_rfs_block_size139 typedef struct rtems_rfs_block_size_s 140 140 { 141 141 /** -
cpukit/libfs/src/rfs/rtems-rfs-block.h
r5c8fa6a0 r2668de20 87 87 * @li 21,474,836,480 bytes for a 4096 byte block size. 88 88 */ 89 typedef struct rtems_rfs_block_map_ t89 typedef struct rtems_rfs_block_map_s 90 90 { 91 91 /**
Note: See TracChangeset
for help on using the changeset viewer.