summaryrefslogtreecommitdiffstats
path: root/src/H5ACpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2017-02-23 07:21:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2017-02-23 07:21:41 (GMT)
commit4b5e05c084f93c35dae946c2c9e814d565a613b0 (patch)
tree634c5cb617eb9a63dc7f5cf8487f30fef81321f1 /src/H5ACpkg.h
parent2c2fb928daa8fa82930f78d00f9ee0dcad70d35a (diff)
downloadhdf5-4b5e05c084f93c35dae946c2c9e814d565a613b0.zip
hdf5-4b5e05c084f93c35dae946c2c9e814d565a613b0.tar.gz
hdf5-4b5e05c084f93c35dae946c2c9e814d565a613b0.tar.bz2
Fix some more signed -> unsigned value issues with cache data structures, also
misc. style cleanups. All to align w/incoming page_buffering changes.
Diffstat (limited to 'src/H5ACpkg.h')
-rw-r--r--src/H5ACpkg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5ACpkg.h b/src/H5ACpkg.h
index 816f1d5..77ba0ae 100644
--- a/src/H5ACpkg.h
+++ b/src/H5ACpkg.h
@@ -404,7 +404,7 @@ typedef struct H5AC_aux_t
void (* write_done)(void);
- void (* sync_point_done)(int num_writes,
+ void (* sync_point_done)(unsigned num_writes,
haddr_t * written_entries_tbl);
unsigned p0_image_len;
@@ -430,7 +430,7 @@ H5_DLL herr_t H5AC__log_moved_entry(const H5F_t *f, haddr_t old_addr,
H5_DLL herr_t H5AC__flush_entries(H5F_t *f, hid_t dxpl_id);
H5_DLL herr_t H5AC__run_sync_point(H5F_t *f, hid_t dxpl_id, int sync_point_op);
H5_DLL herr_t H5AC__set_sync_point_done_callback(H5C_t *cache_ptr,
- void (*sync_point_done)(int num_writes, haddr_t *written_entries_tbl));
+ void (*sync_point_done)(unsigned num_writes, haddr_t *written_entries_tbl));
H5_DLL herr_t H5AC__set_write_done_callback(H5C_t * cache_ptr,
void (* write_done)(void));
#endif /* H5_HAVE_PARALLEL */