2
0
mirror of https://github.com/HDFGroup/hdf5.git synced 2024-12-15 07:40:23 +08:00
hdf5/src/H5PBpkg.h
lrknox 25ec07450a Change copyright headers to replace url referring to file to be removed
and replace it with new url for COPYING file.

Fix 2 lines in java error test expected output file where messages
include line numbers changed by reducing the copyright header by 2
lines.
2017-04-14 11:54:16 -05:00

59 lines
2.2 KiB
C

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#if !(defined H5PB_FRIEND || defined H5PB_MODULE)
#error "Do not include this file outside the H5PB package!"
#endif
#ifndef _H5PBpkg_H
#define _H5PBpkg_H
/* Get package's private header */
#include "H5PBprivate.h"
/* Other private headers needed by this file */
/**************************/
/* Package Private Macros */
/**************************/
/****************************/
/* Package Private Typedefs */
/****************************/
typedef struct H5PB_entry_t {
void *page_buf_ptr; /* Pointer to the buffer containing the data */
haddr_t addr; /* Address of the page in the file */
H5F_mem_page_t type; /* Type of the page entry (H5F_MEM_PAGE_RAW/META) */
hbool_t is_dirty; /* Flag indicating whether the page has dirty data or not */
/* Fields supporting replacement policies */
struct H5PB_entry_t *next; /* next pointer in the LRU list */
struct H5PB_entry_t *prev; /* previous pointer in the LRU list */
} H5PB_entry_t;
/*****************************/
/* Package Private Variables */
/*****************************/
/******************************/
/* Package Private Prototypes */
/******************************/
#endif /* _H5PBpkg_H */