Home  /  Autodocs  /  amiga.lib

NAME

LibCreatePool
Generate a private memory pool header (V33)

SYNOPSIS

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

void *LibCreatePool(ULONG, ULONG, ULONG);

FUNCTION

This function is a copy of the pool functions in V39 and up of EXEC. In fact, if you are running in V39, this function will notice and call the EXEC function. This function works in V33 and up (1.2) Amiga system.

The C code interface is _LibCreatePool() and takes its arguments from the stack just like the C code interface for CreatePool() in amiga.lib. The assembly code interface is with the symbol _AsmCreatePool: and takes the parameters in registers with the additional parameter of ExecBase being in a6 which can be used from SAS/C 6 by a prototype of:

EXAMPLE

void * __asm AsmCreatePool(register __d0 ULONG,
register __d1 ULONG,
register __d2 ULONG,
register __a6 struct ExecBase *);

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, (LibCreatePool() will fail if it is not).

RESULT

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

NOTES

The memFlags you specify are used by LibAllocPooled() only, not by LibCreatePool(). The LibCreatePool() function will allocate memory for its management data structures using MEMF_ANY. For example, if you call LibCreatePool(MEMF_FAST, ...) and expect it to return NULL if no fast memory is available you may find that it succeeds. Subsequent LibAllocPooled() 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 LibAllocPooled() 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 LibAllocPooled() to zero all by yourself.

SEE ALSO

DeletePool(), AllocPooled(), FreePooled(), exec/memory.i, LibDeletePool(), LibAllocPooled(), LibFreePooled()