Does HDF5 lib proper make use of generic property lists?

I have been grep'ing HDF5 library source code for instances of USE of
the H5Pregister or H5Pinsert functions and I don't see them being used.

So, I am thinking this means that the HDF5 library proper does not make
use of generic property lists for its properties. Can anyone
confirm/deny that?

Mark

···

--
Mark C. Miller, Lawrence Livermore National Laboratory
================!!LLNL BUSINESS ONLY!!================
miller86@llnl.gov urgent: miller86@pager.llnl.gov
T:8-6 (925)-423-5901 M/W/Th:7-12,2-7 (530)-753-851

Sorry, my mistake. I was grep'ing for externally defined symbols. It
looks like lib does use H5P_register/H5P_insert.

Mark

···

On Wed, 2010-03-10 at 09:19, Mark Miller wrote:

I have been grep'ing HDF5 library source code for instances of USE of
the H5Pregister or H5Pinsert functions and I don't see them being used.

So, I am thinking this means that the HDF5 library proper does not make
use of generic property lists for its properties. Can anyone
confirm/deny that?

Mark

--
Mark C. Miller, Lawrence Livermore National Laboratory
================!!LLNL BUSINESS ONLY!!================
miller86@llnl.gov urgent: miller86@pager.llnl.gov
T:8-6 (925)-423-5901 M/W/Th:7-12,2-7 (530)-753-851

Hi Mark,

···

On Mar 10, 2010, at 11:19 AM, Mark Miller wrote:

I have been grep'ing HDF5 library source code for instances of USE of
the H5Pregister or H5Pinsert functions and I don't see them being used.

So, I am thinking this means that the HDF5 library proper does not make
use of generic property lists for its properties. Can anyone
confirm/deny that?

  The library never uses public APIs internally, so you want to look for H5P_register and H5P_insert. (You could look at H5P_dcrt_reg_prop() in src/H5Pdcpl.c for example)

  Quincey