Beispiel #1
0
/**
 * mdb_exit:
 *
 * Cleans up the LibMDB library.  This function should be called exactly once
 * by the calling program prior to exiting (or prior to final use of LibMDB 
 * functions).
 *
 **/
/* METHOD */ void mdb_exit()
{
	mdb_remove_backends();
}
Beispiel #2
0
/**
 * mdb_exit:
 *
 * Cleans up the LibMDB library.  This function should be called exactly once
 * by the calling program prior to exiting (or prior to final use of LibMDB
 * functions).
 *
 **/
/* METHOD */ void mdb_exit()
{
#if !MDB_NO_BACKENDS
	mdb_remove_backends();
#endif
}