From ad5c7b826145e951950bd1afa6fce17ea193bb48 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 13 Apr 2011 14:01:01 -0400 Subject: [PATCH] Test empty argument tracepoint Signed-off-by: Mathieu Desnoyers Acked-by: Nils Carlson --- tests/hello/tp.c | 5 +++++ tests/hello/tp.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/tests/hello/tp.c b/tests/hello/tp.c index ec3e7ac..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_tracepoint(hello_tptest, tptest_probe, &hello_struct); + register_tracepoint(hello_tptest2, tptest2_probe, &hello_struct); } diff --git a/tests/hello/tp.h b/tests/hello/tp.h index f34f305..7381951 100644 --- a/tests/hello/tp.h +++ b/tests/hello/tp.h @@ -20,3 +20,5 @@ DECLARE_TRACE(hello_tptest, TP_PROTO(int anint), TP_ARGS(anint)); + +DECLARE_TRACE_NOARGS(hello_tptest2); -- 2.34.1