NAME

ACE_Control_Block - This information is stored in memory allocated by the MEMORY_POOL.

SYNOPSIS

#include <ace/Malloc.h >

class ACE_Control_Block { public: ACE_Name_Node *name_head_; ACE_Malloc_Header *freep_; char lock_name_[MAXNAMELEN]; ACE_Malloc_Stats malloc_stats_; long align_[ACE_CONTROL_BLOCK_ALIGN_LONGS < 1 ? 1 : ACE_CONTROL_BLOCK_ALIGN_LONGS]; ACE_Malloc_Header base_; void dump (void) const; };

DESCRIPTION

This class should be local to class ACE_Malloc, but cfront and G++ don't like nested classes in templates...

PUBLIC MEMBERS

ACE_Name_Node *name_head_;

ACE_Malloc_Header *freep_;

char lock_name_[MAXNAMELEN];

ACE_Malloc_Stats malloc_stats_;

    long align_[ACE_CONTROL_BLOCK_ALIGN_LONGS < 1 ? 1 : ACE_CONTROL_BLOCK_ALIGN_LONGS];
    

ACE_Malloc_Header base_;

void dump (void) const;

AUTHOR

Doug Schmidt and Irfan Pyarali

LIBRARY

ace