ust-tracepoint-event: fix probe creation
[lttng-ust.git] / liblttng-ust / tracepoint.c
index 66e58d0a5a34bb8dfe2e6d931ce6ddb416930c7d..578b0f5151d3fecddf8a4321e54ac46d8f97ca23 100644 (file)
@@ -34,6 +34,7 @@
 #include <lttng/usterr-signal-safe.h>
 #include "tracepoint-internal.h"
 #include "ltt-tracer-core.h"
+#include "jhash.h"
 
 /* Set to 1 to enable tracepoint debug output */
 static const int tracepoint_debug;
@@ -401,6 +402,8 @@ int __tracepoint_probe_unregister(const char *name, void *probe, void *data)
 {
        void *old;
 
+       fprintf(stderr, "TEST REGISTER %s\n", name);
+
        old = tracepoint_remove_probe(name, probe, data);
        if (IS_ERR(old))
                return PTR_ERR(old);
This page took 0.024952 seconds and 4 git commands to generate.