/* (Collective set, "block before metadata write" set and "library internal" set) */
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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 files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*-------------------------------------------------------------------------
 *
 * Created:     H5ACprivate.h
 *          Jul  9 1997
 *          Robb Matzke <matzke@llnl.gov>
 *
 * Purpose:     Constants and typedefs available to the rest of the
 *          library.
 *
 *-------------------------------------------------------------------------
 */
#ifndef _H5ACprivate_H
#define _H5ACprivate_H
#include "H5ACpublic.h"     /*public prototypes         */
/* Pivate headers needed by this header */
#include "H5private.h"      /* Generic Functions            */
#include "H5Cprivate.h"     /* Cache                */
#include "H5Fprivate.h"     /* File access              */
#include "H5Pprivate.h"     /* Property lists           */
#ifdef H5_METADATA_TRACE_FILE
#define H5AC__TRACE_FILE_ENABLED    1
#else /* H5_METADATA_TRACE_FILE */
#define H5AC__TRACE_FILE_ENABLED    0
#endif /* H5_METADATA_TRACE_FILE */
/* Global metadata tag values */
#define H5AC__INVALID_TAG      (haddr_t)0
#define H5AC__IGNORE_TAG       (haddr_t)1
#define H5AC__SUPERBLOCK_TAG   (haddr_t)2
#define H5AC__FREESPACE_TAG    (haddr_t)3
#define H5AC__SOHM_TAG         (haddr_t)4
#define H5AC__GLOBALHEAP_TAG   (haddr_t)5