summaryrefslogtreecommitdiffstats
path: root/src/H5FLprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FLprivate.h')
-rw-r--r--src/H5FLprivate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5FLprivate.h b/src/H5FLprivate.h
index 45ca751..3b9a84a 100644
--- a/src/H5FLprivate.h
+++ b/src/H5FLprivate.h
@@ -92,7 +92,7 @@ typedef struct H5FL_reg_node_t {
/* Data structure for free list of blocks */
typedef struct H5FL_reg_head_t {
- hbool_t init; /* Whether the free list has been initialized */
+ bool init; /* Whether the free list has been initialized */
unsigned allocated; /* Number of blocks allocated */
unsigned onlist; /* Number of blocks on free list */
const char *name; /* Name of the type */
@@ -163,7 +163,7 @@ typedef struct H5FL_blk_node_t {
/* Data structure for priority queue of native block free lists */
typedef struct H5FL_blk_head_t {
- hbool_t init; /* Whether the free list has been initialized */
+ bool init; /* Whether the free list has been initialized */
unsigned allocated; /* Total number of blocks allocated */
unsigned onlist; /* Total number of blocks on free list */
size_t list_mem; /* Total amount of memory in blocks on free list */
@@ -215,7 +215,7 @@ typedef struct H5FL_blk_head_t {
#define H5FL_BLK_CALLOC(t, size) (uint8_t *)H5MM_calloc(size)
#define H5FL_BLK_FREE(t, blk) (uint8_t *)H5MM_xfree(blk)
#define H5FL_BLK_REALLOC(t, blk, new_size) (uint8_t *)H5MM_realloc(blk, new_size)
-#define H5FL_BLK_AVAIL(t, size) (FALSE)
+#define H5FL_BLK_AVAIL(t, size) (false)
#endif /* H5_NO_BLK_FREE_LISTS */
/* Data structure to store each array in free list */
@@ -237,7 +237,7 @@ typedef struct H5FL_arr_node_t {
/* Data structure for free list of array blocks */
typedef struct H5FL_arr_head_t {
- hbool_t init; /* Whether the free list has been initialized */
+ bool init; /* Whether the free list has been initialized */
unsigned allocated; /* Total number of blocks allocated */
size_t list_mem; /* Amount of memory in block on free list */
const char *name; /* Name of the type */
@@ -358,7 +358,7 @@ typedef struct H5FL_fac_node_t H5FL_fac_node_t;
/* Data structure for free list block factory */
typedef struct H5FL_fac_head_t {
- hbool_t init; /* Whether the free list has been initialized */
+ bool init; /* Whether the free list has been initialized */
unsigned allocated; /* Number of blocks allocated */
unsigned onlist; /* Number of blocks on free list */
size_t size; /* Size of the blocks in the list */