diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-19 04:58:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-19 04:58:59 (GMT) |
commit | 52d71bcd6f19c7b0adb6544f4c79df94eb1135e4 (patch) | |
tree | cc7b05a2d59865db11f02f409ffeadb52cb2afd1 /src/H5FLprivate.h | |
parent | eff3014d975a3118360fa38660af910af804cdcd (diff) | |
download | hdf5-52d71bcd6f19c7b0adb6544f4c79df94eb1135e4.zip hdf5-52d71bcd6f19c7b0adb6544f4c79df94eb1135e4.tar.gz hdf5-52d71bcd6f19c7b0adb6544f4c79df94eb1135e4.tar.bz2 |
[svn-r13770] Description:
Clean up various memory leaks, etc.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5FLprivate.h')
-rw-r--r-- | src/H5FLprivate.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5FLprivate.h b/src/H5FLprivate.h index 5d46bf0..93a853a 100644 --- a/src/H5FLprivate.h +++ b/src/H5FLprivate.h @@ -63,9 +63,12 @@ /* Macro for inclusion in the free list allocation parameters */ #define H5FL_TRACK_PARAMS ,const char *call_file, const char *call_func, int call_line +/* Forward declarations for structure fields */ +struct H5CS_t; + /* Tracking information for each block */ typedef struct H5FL_track_t { - H5CS_t *stack; /* Function stack */ + struct H5CS_t *stack; /* Function stack */ char *file; /* Name of file containing calling function */ char *func; /* Name of calling function */ int line; /* Line # within calling function */ |