Initializing help system before first use

stackalloc

Purpose
Allocate memory on the Mosel execution stack.
Synopsis
void *stackalloc(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 on the Mosel execution stack. This memory block must be released before the termination of the calling subroutine by a call to stackfree otherwise there is no guarantee on when the deallocation will occur (the stack is anyway released at program termination).
Related topics

© 2001-2024 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.