Test empty argument tracepoint
[ust.git] / tests / hello / tp.c
index ec3e7ac73e5263733cdc8ad6e31578eb64a5c17b..4eb7a27463e36b89e63a1ba1a9eea71ff8b25087 100644 (file)
@@ -37,8 +37,13 @@ void tptest_probe(void *data, int anint)
        printf("this is the message: %s\n", hello->message);
 }
 
+void tptest2_probe(void *data)
+{
+}
+
 static void __attribute__((constructor)) init()
 {
        DBG("connecting tracepoint...\n");
        register_tracepoint(hello_tptest, tptest_probe, &hello_struct);
+       register_tracepoint(hello_tptest2, tptest2_probe, &hello_struct);
 }
This page took 0.023549 seconds and 4 git commands to generate.