Initializing help system before first use

memalloc

Purpose
Allocate memory from the Mosel memory manager.
Synopsis
void *memalloc(XPRMcontext ctx, size_t size, int flags);
Arguments
ctx 
Mosel's execution context
size 
Amount of memory to allocate in bytes
flags 
Possible values (they can be combined):
XPRM_MEM_ZERO 
The allocated memory is initialised with zeros
XPRM_MEM_NULL 
Instead of exiting the process, the value NULL is returned if memory cannot be allocated
Return value
A pointer to the allocated memory or NULL in case of error
Further information
This function allocates a block of memory from the Mosel memory manager. This memory block might be released using memfree but all memory allocated by this function is automatically returned to the system when the model is reset.
Related topics

© 2001-2023 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.