summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-09-18 21:06:11 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-09-18 21:06:11 (GMT)
commitef8604f3484a1547222ad73474e74788497d9079 (patch)
treeaf634636415858cb06d3b9f7981a54e1b0887eb2 /src/H5.c
parentac0b9746301f65396ecada7704cc836d2a69c30c (diff)
downloadhdf5-ef8604f3484a1547222ad73474e74788497d9079.zip
hdf5-ef8604f3484a1547222ad73474e74788497d9079.tar.gz
hdf5-ef8604f3484a1547222ad73474e74788497d9079.tar.bz2
[svn-r96] Added "atexit" routines to each interface to free buffers allocated during
runtime. Isolated but can't figure out how to fix bug reported with purify.
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c85
1 files changed, 85 insertions, 0 deletions
diff --git a/src/H5.c b/src/H5.c
index 4d6d113..86f80bd 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -53,6 +53,13 @@ hbool_t library_initialize_g = FALSE;
hbool_t thread_initialize_g = FALSE;
hbool_t install_atexit_g = TRUE;
+typedef struct H5_exit {
+ void (*func)(void); /* Interface function to call during exit */
+ struct H5_exit *next; /* Pointer to next node with exit function */
+ } H5_exit_t;
+
+H5_exit_t *lib_exit_head; /* Pointer to the head of the list of 'atexit' functions */
+
/*------------------_-- Local function prototypes ----------------------------*/
static herr_t H5_init_interface(void);
@@ -82,6 +89,46 @@ herr_t H5_init_library(void)
/*--------------------------------------------------------------------------
NAME
+ H5_add_exit
+ PURPOSE
+ Add an exit routine to the list of routines to call during 'atexit'
+ USAGE
+ herr_t H5_add_exit(func)
+ void (*func)(void); IN: Function pointer of routine to add to chain
+
+ RETURNS
+ SUCCEED/FAIL
+ DESCRIPTION
+ Pre-pend the new function to the list of function to call during the exit
+ process. These routines are responsible for free'ing static buffers, etc.
+ GLOBAL VARIABLES
+ COMMENTS, BUGS, ASSUMPTIONS
+ Don't make assumptions about the environment during the exit procedure...
+ EXAMPLES
+ REVISION LOG
+--------------------------------------------------------------------------*/
+herr_t
+H5_add_exit (void (*func)(void))
+{
+ herr_t ret_value = SUCCEED;
+ H5_exit_t *new;
+
+ FUNC_ENTER (H5_add_exit, NULL, FAIL);
+
+ assert(func);
+
+ if((new=HDcalloc(1,sizeof(H5_exit_t)))==NULL)
+ HRETURN_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL);
+
+ new->func=func;
+ new->next=lib_exit_head;
+ lib_exit_head=new;
+
+ FUNC_LEAVE(ret_value);
+} /* end H5_add_exit() */
+
+/*--------------------------------------------------------------------------
+ NAME
H5_term_library
PURPOSE
Terminate various static buffers and shutdown the library.
@@ -101,6 +148,16 @@ herr_t H5_init_library(void)
void
H5_term_library (void)
{
+ H5_exit_t *temp;
+
+ temp=lib_exit_head;
+ while(lib_exit_head!=NULL)
+ {
+ (*lib_exit_head->func)();
+ lib_exit_head=lib_exit_head->next;
+ HDfree(temp);
+ temp=lib_exit_head;
+ } /* end while */
} /* end H5_term_library() */
/*--------------------------------------------------------------------------
@@ -123,10 +180,38 @@ herr_t H5_init_thread(void)
if((thrderrid=H5Enew_err_stack(16))==FAIL)
HRETURN_ERROR (H5E_FUNC, H5E_CANTINIT, FAIL);
+ /* Add the "thread termination" routine to the exit chain */
+ if(H5_add_exit(&H5_term_thread)==FAIL)
+ HRETURN_ERROR (H5E_FUNC, H5E_CANTINIT, FAIL);
+
FUNC_LEAVE (SUCCEED);
} /* H5_init_thread */
/*--------------------------------------------------------------------------
+ NAME
+ H5_term_thread
+ PURPOSE
+ Terminate various thread-specific objects
+ USAGE
+ void H5_term_thread()
+ RETURNS
+ SUCCEED/FAIL
+ DESCRIPTION
+ Release the error stack and any other thread-specific resources allocated
+ on a "per thread" basis.
+ GLOBAL VARIABLES
+ COMMENTS, BUGS, ASSUMPTIONS
+ Can't report errors...
+ EXAMPLES
+ REVISION LOG
+--------------------------------------------------------------------------*/
+void
+H5_term_thread (void)
+{
+ H5Edelete_err_stack(thrderrid);
+} /* end H5_term_thread() */
+
+/*--------------------------------------------------------------------------
NAME
H5_init_interface -- Initialize interface-specific information
USAGE