Important: The information in this document is obsolete and should not be used for new development.
OTFreeMem
Frees memory allocated from the Open Transport memory pool.C INTERFACE
void OTFreeMem(void* arg)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
arg- A pointer to the memory to free. It must have been allocated by the
 OTAllocMemfunction.DISCUSSION
TheOTFreeMemfunction deallocates memory that you have allocated using theOTAllocMemfunction.SPECIAL CONSIDERATIONS
You can call this routine at both hardware interrupt level and from a deferred task. You need to call theOTEnterInterruptfunction before you make this call from a hardware interrupt.SEE ALSO
TheOTAllocMemfunction.