diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-04 21:00:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-04 21:00:31 (GMT) |
commit | 02e4ee5edf5d1c8fe285497def5cd7b7afbf77e4 (patch) | |
tree | 4b36327c0da85d62ea116da32d0f114700d0f6c9 /src/H5detect.c | |
parent | 7170bbbc96f2b29f42be53f8271fc359f617e09c (diff) | |
download | hdf5-02e4ee5edf5d1c8fe285497def5cd7b7afbf77e4.zip hdf5-02e4ee5edf5d1c8fe285497def5cd7b7afbf77e4.tar.gz hdf5-02e4ee5edf5d1c8fe285497def5cd7b7afbf77e4.tar.bz2 |
[svn-r2073] Added free-list code to the library and took out the older "temporary buffer"
code, since the functionality was superceded. See the followup document for
details on the free-list code.
Diffstat (limited to 'src/H5detect.c')
-rw-r--r-- | src/H5detect.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/H5detect.c b/src/H5detect.c index d4cb4f0..cbb3d1a 100644 --- a/src/H5detect.c +++ b/src/H5detect.c @@ -395,11 +395,16 @@ print_results(int nd, detected_t *d) #include <H5private.h>\n\ #include <H5Iprivate.h>\n\ #include <H5Eprivate.h>\n\ +#include <H5FLprivate.h>\n\ #include <H5MMprivate.h>\n\ #include <H5Tpkg.h>\n\ \n\ static intn interface_initialize_g = 0;\n\ #define INTERFACE_INIT NULL\n\ +\n\ +/* Declare external the free list for H5T_t's */\n\ +H5FL_EXTERN(H5T_t);\n\ +\n\ \n"); /* The interface termination function */ @@ -429,7 +434,7 @@ H5TN_init_interface(void)\n\ /* The part common to fixed and floating types */ printf("\ - if (NULL==(dt = H5MM_calloc (sizeof(H5T_t)))) {\n\ + if (NULL==(dt = H5FL_ALLOC (H5T_t,1))) {\n\ HRETURN_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL,\n\ \"memory allocation failed\");\n\ }\n\ |