Intel(R) Threading Building Blocks Doxygen Documentation
version 4.2.3
|
group of functions used for error suppression in correctness tools | |
enum | __itt_suppress_mode { __itt_unsuppress_range, __itt_suppress_range } |
typedef enum __itt_suppress_mode | __itt_suppress_mode_t |
void ITTAPI | __itt_suppress_push (unsigned int mask) |
Start suppressing errors identified in mask on this thread. More... | |
void ITTAPI | __itt_suppress_pop (void) |
Undo the effects of the matching call to __itt_suppress_push. More... | |
void ITTAPI | __itt_suppress_mark_range (__itt_suppress_mode_t mode, unsigned int mask, void *address, size_t size) |
Mark a range of memory for error suppression or unsuppression for error types included in mask. More... | |
void ITTAPI | __itt_suppress_clear_range (__itt_suppress_mode_t mode, unsigned int mask, void *address, size_t size) |
Undo the effect of a matching call to __itt_suppress_mark_range. If not matching call is found, nothing is changed. More... | |
#define | __itt_suppress_all_errors |
possible value for suppression mask More... | |
#define | __itt_suppress_threading_errors |
possible value for suppression mask (suppresses errors from threading analysis) More... | |
#define | __itt_suppress_memory_errors |
possible value for suppression mask (suppresses errors from memory analysis) More... | |
General behavior: application continues to run, but errors are suppressed
#define __itt_suppress_all_errors |
possible value for suppression mask
Definition at line 530 of file ittnotify.h.
#define __itt_suppress_memory_errors |
possible value for suppression mask (suppresses errors from memory analysis)
Definition at line 542 of file ittnotify.h.
#define __itt_suppress_threading_errors |
possible value for suppression mask (suppresses errors from threading analysis)
Definition at line 536 of file ittnotify.h.
typedef enum __itt_suppress_mode __itt_suppress_mode_t |
enum __itt_suppress_mode |
Enumerator | |
---|---|
__itt_unsuppress_range | |
__itt_suppress_range |
Definition at line 588 of file ittnotify.h.
void ITTAPI __itt_suppress_clear_range | ( | __itt_suppress_mode_t | mode, |
unsigned int | mask, | ||
void * | address, | ||
size_t | size | ||
) |
Undo the effect of a matching call to __itt_suppress_mark_range. If not matching call is found, nothing is changed.
void ITTAPI __itt_suppress_mark_range | ( | __itt_suppress_mode_t | mode, |
unsigned int | mask, | ||
void * | address, | ||
size_t | size | ||
) |
Mark a range of memory for error suppression or unsuppression for error types included in mask.
Undo the effects of the matching call to __itt_suppress_push.