Home  /  Autodocs  /  exec.library

NAME

CreatePool
Generate a private memory pool header (V39)

SYNOPSIS

newPool=CreatePool(memFlags,puddleSize,threshSize)
a0 d0 d1 d2

APTR CreatePool(ULONG,ULONG,ULONG);

FUNCTION

Allocate and prepare a new memory pool header. Each pool is a separate tracking system for memory of a specific type. Any number of pools may exist in the system.

Pools automatically expand and shrink based on demand. Fixed sized "puddles" are allocated by the pool manager when more total memory is needed. Many small allocations can fit in a single puddle. Allocations larger than the threshSize are allocation in their own puddles.

At any time individual allocations may be freed. Or, the entire pool may be removed in a single step.

INPUTS

memFlags
a memory flags specifier, as taken by AllocMem.

puddleSize
the size of Puddles...

threshSize
the largest allocation that goes into normal puddles This *MUST* be less than or equal to puddleSize (CreatePool() will fail if it is not)

RESULT

The address of a new pool header, or NULL for error.

WARNING

Memory allocation and deallocation as well as querying how much memory is available requires a Task or, by extension, a Process. None of the exec kernel memory management operations is safe to call from interrupt code!

Both AllocPooled() and FreePooled() require an arbitration mechanism to work correctly. The use of ObtainSemaphore()/ReleaseSemaphore() is recommended.

If you port source code written for use on AmigaOS 4 to AmigaOS 3.x, be aware that AmigaOS 4 features an integrated arbitration mechanism which can be activated at pool creation time through the ASOPOOL_Protected tag. Likely, there will be no explicit use of the ObtainSemaphore() and ReleaseSemaphore() functions.

You should make sure that an arbitration mechanism exists for the ported code or you may experience stability issues and undefined behaviour caused by overlapping memory pool operations.

NOTES

The memFlags you specify are used by AllocPooled() only, not by CreatePool(). The CreatePool() function will allocate memory for its management data structures using MEMF_ANY. For example, if you call CreatePool(MEMF_FAST, ...) and expect it to return NULL if no fast memory is available you may find that it succeeds. Subsequent AllocPooled() calls for this pool will, however, fail on a system without fast memory.

The memory pools solve three problems which allocating memory through AllocMem(), Allocate() and AllocVec() either do not address or which are part of how they have to work:

These features benefit not just your application, it also helps every other Amiga software running at the same time.

These benefits come with costs which you should be aware of when making the choice to adopt memory pools for your software.

BUGS

Avoid using a puddle size of 0 bytes. It will have the effect of each AllocPooled() call resulting in a separate memory allocation. This defeats the purpose of the memory pools, which is in curbing memory fragmentation and the need to block multitasking when memory has to be allocated from the global pool.

Puddle sizes should not exceed 4294967272 (0xFFFFFFE8) bytes because this may trigger a side-effect leading to far less memory to be allocated.

Creating a pool with MEMF_CLEAR set in the memFlags parameter has a side-effect in slowing down all memory allocations made. The creation of a new puddle will result in it getting set to zero, and any allocation made from that puddle will set it to zero all over again. If you can, avoid using MEMF_CLEAR and set the memory allocated by AllocPooled() to zero all by yourself.

SEE ALSO

DeletePool(), AllocPooled(), FreePooled(), "exec/memory.i"