
- Forum
- Programming Talk
- C and C++
- How to Carry out Implementation
How to Carry out Implementation
This is a discussion on How to Carry out Implementation within the C and C++ forums, part of the Programming Talk category; I want to know how one can carry out Memory pool implementation using C++ programming language. Also let me know ...
-
How to Carry out Implementation
I want to know how one can carry out Memory pool implementation using C++ programming language. Also let me know how to access the allocated memory pool using C++ programming language. If someone idea is provided in this line I would try the same and envisage my knowledge in this regard.
-
You can use the following statement to allocate memory
MemPoolHandle allocateMemory(size_t bytes);
If you are creating a simple memory pool it would surely allocate three pools during compile time and the block size allocated for each depends on the application.

Reply With Quote





