flags |= H5AC__DELETED_FLAG | H5AC__FREE_FILE_SPACE_FLAG; /* Indicate that the object was deleted, for the unprotect call */
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 * Programmer:  Robb Matzke <matzke@llnl.gov>
 *              Friday, March 27, 1998
 *
 * Purpose: Operations on the global heap.  The global heap is the set of
 *      all collections and each collection contains one or more
 *      global heap objects.  An object belongs to exactly one
 *      collection.  A collection is treated as an atomic entity for
 *      the purposes of I/O and caching.
 *
 *      Each file has a small cache of global heap collections called
 *      the CWFS list and recently accessed collections with free
 *      space appear on this list.  As collections are accessed the
 *      collection is moved toward the front of the list.  New
 *      collections are added to the front of the list while old
 *      collections are added to the end of the list.
 *
 *      The collection model reduces the overhead which would be
 *      incurred if the global heap were a single object, and the
 *      CWFS list allows the library to cheaply choose a collection
 *      for a new object based on object size, amount of free space
 *      in the collection, and temporal locality.
 */
/****************/
/* Module Setup */
/****************/
#define H5HG_PACKAGE        /*suppress error about including H5HGpkg      */
/***********/
/* Headers */
/***********/
#include "H5private.h"      /* Generic Functions            */
#include "H5Eprivate.h"     /* Error handling           */