Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

1.1.2 vsip_finalize - Finalize

int vsip_finalize(void*);
Description

This function finalizes the VSIPL library, releasing all internal resources and memory. After calling this function, no other VSIPL functions may be called. The function can be called in a nested manner, but only the outermost call will actually free up the internal initialization memory.

Parameters
Return Value
Example

int result; 
 
// Finalize the VSIPL library 
result = vsip_finalize(NULL); 
 
if (result != 0) { 
    // Handle error 
}