X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftracing%2Fcyg_profile_functions.c;fp=src%2Fceph%2Fsrc%2Ftracing%2Fcyg_profile_functions.c;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=d09c14c9d67824a14955ca1244584e469b2287f1;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/tracing/cyg_profile_functions.c b/src/ceph/src/tracing/cyg_profile_functions.c deleted file mode 100644 index d09c14c..0000000 --- a/src/ceph/src/tracing/cyg_profile_functions.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "acconfig.h" - -#ifdef WITH_LTTNG -#define TRACEPOINT_DEFINE -#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE -#include "tracing/cyg_profile.h" -#undef TRACEPOINT_PROBE_DYNAMIC_LINKAGE -#undef TRACEPOINT_DEFINE -#endif - -void __cyg_profile_func_enter(void *this_fn, void *call_site) - __attribute__((no_instrument_function)); - -void __cyg_profile_func_exit(void *this_fn, void *call_site) - __attribute__((no_instrument_function)); - - -void __cyg_profile_func_enter(void *this_fn, void *call_site) -{ -#ifdef WITH_LTTNG - tracepoint(lttng_ust_cyg_profile, func_entry, this_fn, call_site); -#endif -} - -void __cyg_profile_func_exit(void *this_fn, void *call_site) -{ -#ifdef WITH_LTTNG - tracepoint(lttng_ust_cyg_profile, func_exit, this_fn, call_site); -#endif -} -