ISC DHCP  4.3.0
A reference DHCPv4 and DHCPv6 implementation
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