ISC DHCP  4.3.3
A reference DHCPv4 and DHCPv6 implementation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
trace.h
Go to the documentation of this file.
1 // trace.h
2 
3 #include "config.h"
4 #ifdef HAVE_SYSTEMTAP
5 // include the generated probes header and put markers in code
6 #include "probes.h"
7 #define TRACE(probe) probe
8 #else
9 // Wrap the probe to allow it to be removed when no systemtap available
10 #define TRACE(probe)
11 #endif