summaryrefslogtreecommitdiffstats
path: root/src/H5ESpkg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5ESpkg.h')
-rw-r--r--src/H5ESpkg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5ESpkg.h b/src/H5ESpkg.h
index 655efbb..f7c70e8 100644
--- a/src/H5ESpkg.h
+++ b/src/H5ESpkg.h
@@ -61,7 +61,7 @@ struct H5ES_t {
H5ES_event_list_t active; /* List of active events in set */
/* Failed events */
- hbool_t err_occurred; /* Flag for error from an operation */
+ bool err_occurred; /* Flag for error from an operation */
H5ES_event_list_t failed; /* List of failed events in set */
};
@@ -77,10 +77,10 @@ typedef int (*H5ES_list_iter_func_t)(H5ES_event_t *ev, void *ctx);
/******************************/
H5_DLL H5ES_t *H5ES__create(void);
H5_DLL herr_t H5ES__insert_request(H5ES_t *es, H5VL_t *connector, void *token);
-H5_DLL herr_t H5ES__wait(H5ES_t *es, uint64_t timeout, size_t *num_in_progress, hbool_t *op_failed);
+H5_DLL herr_t H5ES__wait(H5ES_t *es, uint64_t timeout, size_t *num_in_progress, bool *op_failed);
H5_DLL herr_t H5ES__get_requests(H5ES_t *es, H5_iter_order_t order, hid_t *connector_ids, void **requests,
size_t array_len);
-H5_DLL herr_t H5ES__cancel(H5ES_t *es, size_t *num_not_canceled, hbool_t *op_failed);
+H5_DLL herr_t H5ES__cancel(H5ES_t *es, size_t *num_not_canceled, bool *op_failed);
H5_DLL herr_t H5ES__get_err_info(H5ES_t *es, size_t num_err_info, H5ES_err_info_t err_info[],
size_t *num_cleared);