HDF5  1.12.0
H5FOprivate.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * Copyright by The HDF Group. *
3  * Copyright by the Board of Trustees of the University of Illinois. *
4  * All rights reserved. *
5  * *
6  * This file is part of HDF5. The full HDF5 copyright notice, including *
7  * terms governing use, modification, and redistribution, is contained in *
8  * the COPYING file, which can be found at the root of the source code *
9  * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
10  * If you do not have access to either file, you may request a copy from *
11  * help@hdfgroup.org. *
12  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
13 
14 /*
15  * This file contains library private information about the H5FO module
16  */
17 #ifndef _H5FOprivate_H
18 #define _H5FOprivate_H
19 
20 #ifdef LATER
21 #include "H5FOpublic.h"
22 #endif /* LATER */
23 
24 /* Private headers needed by this file */
25 #include "H5private.h" /* Generic Functions */
26 #include "H5Fprivate.h" /* File access */
27 #include "H5SLprivate.h" /* Skip lists */
28 
29 /* Typedefs */
30 
31 /* Typedef for open object cache */
32 typedef H5SL_t H5FO_t; /* Currently, all open objects are stored in skip list */
33 
34 /* Macros */
35 
36 /* Private routines */
38 H5_DLL void *H5FO_opened(const H5F_t *f, haddr_t addr);
39 H5_DLL herr_t H5FO_insert(const H5F_t *f, haddr_t addr, void *obj, hbool_t delete_flag);
41 H5_DLL herr_t H5FO_mark(const H5F_t *f, haddr_t addr, hbool_t deleted);
42 H5_DLL hbool_t H5FO_marked(const H5F_t *f, haddr_t addr);
43 H5_DLL herr_t H5FO_dest(const H5F_t *f);
49 
50 #endif /* _H5FOprivate_H */
51 
H5FO_opened
H5_DLL void * H5FO_opened(const H5F_t *f, haddr_t addr)
Definition: H5FO.c:112
H5SL_t
Definition: H5SL.c:557
f
hdr f
Definition: H5EA.c:755
H5FO_marked
H5_DLL hbool_t H5FO_marked(const H5F_t *f, haddr_t addr)
Definition: H5FO.c:306
H5FO_top_create
H5_DLL herr_t H5FO_top_create(H5F_t *f)
Definition: H5FO.c:391
H5FO_insert
H5_DLL herr_t H5FO_insert(const H5F_t *f, haddr_t addr, void *obj, hbool_t delete_flag)
Definition: H5FO.c:159
haddr_t
CATCH haddr_t
Definition: H5EAdblock.c:162
H5FO_top_decr
H5_DLL herr_t H5FO_top_decr(const H5F_t *f, haddr_t addr)
Definition: H5FO.c:484
H5FO_create
H5_DLL herr_t H5FO_create(const H5F_t *f)
Definition: H5FO.c:72
H5FO_top_incr
H5_DLL herr_t H5FO_top_incr(const H5F_t *f, haddr_t addr)
Definition: H5FO.c:429
H5FO_mark
H5_DLL herr_t H5FO_mark(const H5F_t *f, haddr_t addr, hbool_t deleted)
Definition: H5FO.c:262
H5SLprivate.h
H5FO_delete
H5_DLL herr_t H5FO_delete(H5F_t *f, haddr_t addr)
Definition: H5FO.c:211
H5FO_top_count
H5_DLL hsize_t H5FO_top_count(const H5F_t *f, haddr_t addr)
Definition: H5FO.c:538
H5Fprivate.h
H5FO_top_dest
H5_DLL herr_t H5FO_top_dest(H5F_t *f)
Definition: H5FO.c:579
H5_DLL
#define H5_DLL
Definition: H5api_adpt.h:234
H5F_t
Definition: H5Fpkg.h:374
H5FO_dest
H5_DLL herr_t H5FO_dest(const H5F_t *f)
Definition: H5FO.c:346
herr_t
int herr_t
Definition: H5public.h:128
hbool_t
bool hbool_t
Definition: H5public.h:159
hsize_t
hsize_t
Definition: H5overflow.txt:44
H5FO_t
H5SL_t H5FO_t
Definition: H5FOprivate.h:32
H5private.h