memoryBlock = AllocMem(byteSize, attributes)
D0 D0 D1
void *AllocMem(ULONG, ULONG);
This is the memory allocator to be used by system code and applications. It provides a means of specifying that the allocation should be made in a memory area accessible to the chips, or accessible to shared system code.
Memory is allocated based on requirements and options. Any "requirement" must be met by a memory allocation, any "option" will be applied to the block regardless. AllocMem will try all memory spaces until one is found with the proper requirements and room for the memory request.
The result of any memory allocation MUST be checked, and a viable error handling path taken. ANY allocation may fail if memory has been filled.
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!
EXAMPLES
AllocMem(64,0L) -
Allocate the best available memory AllocMem(25,MEMF_CLEAR) -
Allocate the best available memory, and
clear it before returning.
AllocMem(128,MEMF_CHIP) -
Allocate chip memory AllocMem(128,MEMF_CHIP|MEMF_CLEAR) -
Allocate cleared chip memory AllocMem(821,MEMF_CHIP|MEMF_PUBLIC|MEMF_CLEAR) -
Allocate cleared,
public, chip memory.
If the free list is corrupt, the system will panic with alert AN_MemCorrupt, $01000005.
This function may not be called from interrupts.
A DOS process will have its pr_Result2 field set to ERROR_NO_FREE_STORE if the memory allocation fails.