1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
.TH ACE_Static_Allocator 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_Static_Allocator \- Defines a class that provided a highly optimized memory management scheme for allocating memory statically.
.SH SYNOPSIS
.br
.PP
\fC#include <Malloc_T.h>\fR
.PP
Inherits \fBACE_Static_Allocator_Base\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "\fBACE_Static_Allocator\fR (void)"
.br
.in -1c
.SS Private Attributes
.in +1c
.ti -1c
.RI "char \fBpool_\fR [POOL_SIZE]"
.br
.RI "\fIPool contents.\fR"
.in -1c
.SH DETAILED DESCRIPTION
.PP
.SS template<size_t POOL_SIZE> template class ACE_Static_Allocator
Defines a class that provided a highly optimized memory management scheme for allocating memory statically.
.PP
.PP
This class allocates a fixed-size <POOL_SIZE> of memory and uses the class implementations of <malloc> and <calloc> to optimize memory allocation from this pool.
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS template<size_tPOOL_SIZE> ACE_Static_Allocator<POOL_SIZE>::ACE_Static_Allocator<POOL_SIZE> (void)\fC [inline]\fR
.PP
.SH MEMBER DATA DOCUMENTATION
.PP
.SS template<size_tPOOL_SIZE> char ACE_Static_Allocator<POOL_SIZE>::pool_[POOL_SIZE]\fC [private]\fR
.PP
Pool contents.
.PP
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|