#include <stdio.h>
Go to the source code of this file.
◆ HDFEOS_ERROR_CHECK
#define HDFEOS_ERROR_CHECK |
( |
|
msg | ) |
|
Value:if (hdfeos_status_code ==
FAIL) { \
fprintf(stderr,
"Error: %s at line %d\n", msg,
__LINE__); \
exit(1); \
}
Definition at line 6 of file errormacros.h.
◆ MEM_ERROR_CHECK
#define MEM_ERROR_CHECK |
( |
|
msg | ) |
|
Value:if (mem_status_code == NULL) { \
fprintf(stderr,
"Error: %s at line %d\n", msg,
__LINE__); \
exit(1); \
}
Definition at line 12 of file errormacros.h.
◆ MTK_ERROR
Value:{ \
fprintf(stderr,
"Error: %s at line %d\n", msg,
__LINE__); \
exit(1); \
}
Definition at line 18 of file errormacros.h.
◆ WRN_LOG_JUMP
#define WRN_LOG_JUMP |
( |
|
msg | ) |
goto ERROR_HANDLE; |