Home  /  Autodocs  /  icon.library

NAME

FreeAlloc
allocate memory and add it to a free list (V36).

SYNOPSIS

memory = FreeAlloc( free, len, type )
D0 A0 A1 A2

APTR FreeAlloc(struct FreeList *, ULONG, ULONG);

FUNCTION

This routine allocates the amount of memory specified and then adds it to the free list. The free list will be extended (if required). If there is not enough memory to complete the call, a null is returned.

Note that FreeAlloc not only allocates the requested memory but also records the memory in the free list.

INPUTS

free
a pointer to a FreeList structure

len
the length of the memory to be recorded; must be > 0

type
the type of memory to be allocated

RESULT

memory
a pointer to the newly allocated memory chunk or zero if the call failed.

NOTES

This function was implemented in all icon.library versions starting with V36. However, it was never documented.

SEE ALSO

AllocEntry(), FreeEntry(), FreeFreeList(), FreeFree()