Changeset ce92867b in rtems for cpukit/libblock/include
- Timestamp:
- Feb 2, 2005, 12:06:18 AM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 043329e
- Parents:
- 1d386ff
- Location:
- cpukit/libblock/include/rtems
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libblock/include/rtems/bdbuf.h
r1d386ff rce92867b 55 55 blkdev_bnum block; /* block number on the device */ 56 56 57 char*buffer; /* Pointer to the buffer memory area */57 unsigned char *buffer; /* Pointer to the buffer memory area */ 58 58 rtems_status_code status; /* Last I/O operation completion status */ 59 59 int error; /* If status != RTEMS_SUCCESSFUL, this field contains … … 80 80 */ 81 81 typedef struct rtems_bdbuf_config { 82 int size; /* Size of block */ 83 int num; /* Number of blocks of appropriate size */ 84 char *mem_area; /* Pointer to the blocks location or NULL, in this 85 case memory for blocks will be allocated by 86 Buffering Layer with the help of RTEMS partition 87 manager */ 82 int size; /* Size of block */ 83 int num; /* Number of blocks of appropriate size */ 84 unsigned char *mem_area; 85 /* Pointer to the blocks location or NULL, in this 86 case memory for blocks will be allocated by 87 Buffering Layer with the help of RTEMS partition 88 manager */ 88 89 } rtems_bdbuf_config; 89 90 -
cpukit/libblock/include/rtems/ide_part_table.h
r1d386ff rce92867b 135 135 136 136 /* device name in /dev filesystem */ 137 uint8_tdev_name[RTEMS_IDE_PARTITION_DEV_NAME_LENGTH_MAX];137 char dev_name[RTEMS_IDE_PARTITION_DEV_NAME_LENGTH_MAX]; 138 138 139 139 uint32_t sector_size; /* size of sector */
Note: See TracChangeset
for help on using the changeset viewer.