X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=hello%2Fhello.c;h=7eecf69e83f0bbaf23949a71e191806bf884687a;hb=HEAD;hp=0735fd6b6004a518d2c37f11c11623c2d97f2d3f;hpb=59b161cdfcaad93fee295add37090a3d991e7aa8;p=ust.git diff --git a/hello/hello.c b/hello/hello.c deleted file mode 100644 index 0735fd6..0000000 --- a/hello/hello.c +++ /dev/null @@ -1,24 +0,0 @@ -#include -#include - -#include "../libmarkers/marker.h" - -void probe(const struct marker *mdata, - void *probe_private, void *call_private, - const char *fmt, va_list *args) -{ - printf("In probe\n"); -} - -int main() -{ - printf("Hello, World!\n"); - - marker_probe_register("abc", "testmark", "", probe, NULL); - - trace_mark(abc, testmark, "", MARK_NOARGS); - - scanf("%*s"); - - return 0; -}