Developer Reference for Intel® Integrated Performance Primitives 2019
Translates a status code into a message.
const char* ippGetStatusString(IppStatus stsCode);
ippcore.h
stsCode |
Code that indicates the status type (see Error Status Values and Messages). |
This function returns a pointer to the text string associated with a status code of IppStatus type . Use this function to produce error and warning messages for users. The returned pointer is a pointer to an internal static buffer and does not need to be released.
The following code example shows how to use the function ippGetStatusString. If you call an Intel IPP function ippsAddC_16s_I with a NULL pointer, it returns an error code -8. The status information function translates this code into the corresponding message “Null Pointer Error”.
void statusinfo(void) { IppStatus st = ippsAddC_16s_I (3, 0, 0); printf(“%d : %s\n”, st, ippGetStatusString(st)); }
Output:
-8, Null Pointer Error