
Public Member Functions | |
| AllocArea (AllocArea *next) | |
Public Attributes | |
| Uint16 | m_currPage |
| Uint16 | m_numPages |
| SuperPool::PtrI | m_firstPageI |
| void * | m_memory |
| AllocArea * | m_nextArea |
Definition at line 24 of file NdbdSuperPool.cpp.
| AllocArea::AllocArea | ( | AllocArea * | next | ) |
Definition at line 36 of file NdbdSuperPool.cpp.
References m_currPage, m_firstPageI, m_memory, m_nextArea, m_numPages, and RNIL.
Referenced by initAllocAreaPage().
00037 { 00038 m_nextArea = next; 00039 m_firstPageI = RNIL; 00040 m_currPage = m_numPages = 0; 00041 m_memory = 0; 00042 }
Here is the caller graph for this function:

Definition at line 28 of file NdbdSuperPool.cpp.
Referenced by AllocArea(), NdbdSuperPool::allocAreaMemory(), and NdbdSuperPool::getNewPage().
Definition at line 30 of file NdbdSuperPool.cpp.
Referenced by AllocArea(), NdbdSuperPool::allocAreaMemory(), and NdbdSuperPool::getNewPage().
| void* AllocArea::m_memory |
Definition at line 31 of file NdbdSuperPool.cpp.
Referenced by AllocArea(), NdbdSuperPool::allocAreaMemory(), and NdbdSuperPool::~NdbdSuperPool().
| struct AllocArea* AllocArea::m_nextArea |
Definition at line 32 of file NdbdSuperPool.cpp.
Referenced by NdbdSuperPool::allocArea(), AllocArea(), initAllocAreaPage(), and NdbdSuperPool::~NdbdSuperPool().
Definition at line 29 of file NdbdSuperPool.cpp.
Referenced by AllocArea(), NdbdSuperPool::allocAreaMemory(), NdbdSuperPool::getNewPage(), and NdbdSuperPool::~NdbdSuperPool().
1.4.7

