Adelsbach/VSIPL
Core Light Programming Reference Guide
DD-00014-015
Core Light

4.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 
}