|
spy v3.0.0
Andrée Borrel
|
The sanitizers the code is compiled with. More...
The sanitizers the code is compiled with.
Whether the binary carries the instrumentation of the address or the thread sanitizer, so that code which the instrumentation would slow down or trip can step aside at compile time.
Variables | |
| constexpr bool | spy::supports::address_sanitizers_status = spy_implementation_defined {} |
| Address sanitizer status indicator. | |
| constexpr bool | spy::supports::sanitizers_status = address_sanitizers_status || thread_sanitizers_status |
| Sanitizers status indicator. | |
| constexpr bool | spy::supports::thread_sanitizers_status = spy_implementation_defined {} |
| Thread sanitizer status indicator. | |
|
inlineconstexpr |
#include <spy/sanitizers.hpp>
Address sanitizer status indicator.
Evaluates to true when the current code is compiled with -fsanitize=address.
|
inlineconstexpr |
#include <spy/sanitizers.hpp>
Sanitizers status indicator.
Evaluates to true when any of the sanitizers spy detects is enabled.
|
inlineconstexpr |
#include <spy/sanitizers.hpp>
Thread sanitizer status indicator.
Evaluates to true when the current code is compiled with -fsanitize=thread.