Esempio n. 1
0
/**
 * Free the memory allocated to the hashmap.
 */
void deleteRefManager(RefManager* manager) {
	deleteHashMap(&((*manager)->map));
	free(*manager);
	*manager = NULL;
}
Esempio n. 2
0
void finishAllSessions(void) {
  checkGraveyardInternal(1);
  deleteHashMap(sessions);
}