X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Ftp.c;h=4eb7a27463e36b89e63a1ba1a9eea71ff8b25087;hb=ad5c7b826145e951950bd1afa6fce17ea193bb48;hp=3a4c6fcaf15ac93ff85b183ba8dc3dbeeedb6036;hpb=a5f09c2c8efcc5fc047178bef0acb73552cdf390;p=ust.git diff --git a/tests/hello/tp.c b/tests/hello/tp.c index 3a4c6fc..4eb7a27 100644 --- a/tests/hello/tp.c +++ b/tests/hello/tp.c @@ -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_trace_hello_tptest(tptest_probe, &hello_struct); + register_tracepoint(hello_tptest, tptest_probe, &hello_struct); + register_tracepoint(hello_tptest2, tptest2_probe, &hello_struct); }