#include <ace/Malloc_T.h>
template<ACE_MEM_POOL_1, class ACE_LOCK> class ACE_Malloc_FIFO_Iterator {
public:
ACE_Malloc_FIFO_Iterator ( ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK> &malloc, const char *name = 0 );
~ACE_Malloc_FIFO_Iterator (void);
int done (void) const;
int next (void *&next_entry);
int next (void *&next_entry, const char *&name);
int advance (void);
int start (void);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
private:
ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK> &malloc_;
ACE_Name_Node *curr_;
ACE_Read_Guard<ACE_LOCK> guard_;
const char *name_;
};
ACE_Malloc_FIFO_Iterator (
ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK> &malloc,
const char *name = 0
);
name
= 0 it will iterate through everything else only
through those entries whose name
match.
~ACE_Malloc_FIFO_Iterator (void);
int done (void) const;
int next (void *&next_entry);
entry
in the set that hasn't yet been
visited. Returns 0 when all items have been seen, else 1.
int next (void *&next_entry, const char *&name);
entry
(and the name
associated with it) in
the set that hasn't yet been visited. Returns 0 when all items
have been seen, else 1.
int advance (void);
int start (void);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;