Changeset e03c37a in rtems for cpukit/libblock


Ignore:
Timestamp:
08/25/08 15:07:58 (16 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.9, 5, master
Children:
8e92db9
Parents:
22c0e4d
Message:

s/rtems_boolean/bool/g.

Location:
cpukit/libblock/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libblock/src/bdbuf.c

    r22c0e4d re03c37a  
    24412441  rtems_bdpool_id   i;
    24422442  rtems_bdpool_id   curid = -1;
    2443   rtems_boolean     found = FALSE;
     2443  bool              found = FALSE;
    24442444  uint32_t          cursize = UINT_MAX;
    24452445  int               j;
  • cpukit/libblock/src/diskdevs.c

    r22c0e4d re03c37a  
    5252 * we can do lookup safely, enable interrupts and return result.
    5353 */
    54 static volatile rtems_boolean diskdevs_protected;
     54static volatile bool diskdevs_protected;
    5555
    5656/* create_disk_entry --
  • cpukit/libblock/src/ide_part_table.c

    r22c0e4d re03c37a  
    9292 *      TRUE if sector has msdos signature, FALSE otherwise
    9393 */
    94 static rtems_boolean
     94static bool
    9595msdos_signature_check (rtems_sector_data_t *sector)
    9696{
     
    112112 *      TRUE if partition type is extended, FALSE otherwise
    113113 */
    114 static rtems_boolean
     114static bool
    115115is_extended(uint8_t type)
    116116{
     
    128128 *      TRUE if partition type is extended, FALSE otherwise
    129129 */
    130 static rtems_boolean
     130static bool
    131131is_fat_partition(uint8_t type)
    132132{
  • cpukit/libblock/src/ramdisk.c

    r22c0e4d re03c37a  
    3838    int           block_num;  /* Number of blocks on this RAM disk */
    3939    void         *area;       /* RAM disk memory area */
    40     rtems_boolean initialized;/* RAM disk is initialized */
    41     rtems_boolean malloced;   /* != 0, if memory allocated by malloc for this
     40    bool          initialized;/* RAM disk is initialized */
     41    bool          malloced;   /* != 0, if memory allocated by malloc for this
    4242                                 RAM disk */
    4343#if RTEMS_RAMDISK_TRACE
Note: See TracChangeset for help on using the changeset viewer.