X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2Fltt-probes.c;h=0de5c6a48f2ed6b5a4b0fd71b068cac6519c4433;hb=687554296a45bf8b3467ba0bb37c06ba66085641;hp=b24cab13f37bcaa8647193e3d3ec0980c8da3b09;hpb=902e13794ab77170a59123c3c62c5d6204941756;p=lttng-ust.git diff --git a/liblttng-ust/ltt-probes.c b/liblttng-ust/ltt-probes.c index b24cab13..0de5c6a4 100644 --- a/liblttng-ust/ltt-probes.c +++ b/liblttng-ust/ltt-probes.c @@ -14,6 +14,7 @@ #include #include #include +#include "tracepoint-internal.h" #include #include #include @@ -98,7 +99,12 @@ desc_added: * fix the events awaiting probe load. */ for (i = 0; i < desc->nr_events; i++) { - ret = pending_probe_fix_events(desc->event_desc[i]); + const struct lttng_event_desc *ed; + + ed = desc->event_desc[i]; + DBG("Registered event probe \"%s\" with signature \"%s\"", + ed->name, ed->signature); + ret = pending_probe_fix_events(ed); assert(!ret); } end: