X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fhello%2Fust_tests_hello.h;h=6d19ab6eb6de3dcc832c53ebeced68360894baaa;hb=775e7fd8bec57a12c254fcbf646b3d41e3a79d00;hp=a4e32964e031a45cafcdaa3dfa3235e24423f2fe;hpb=41aaf8a5de3c7c3570e0fe063f1565385b4a4dbd;p=lttng-ust.git diff --git a/tests/hello/ust_tests_hello.h b/tests/hello/ust_tests_hello.h index a4e32964..6d19ab6e 100644 --- a/tests/hello/ust_tests_hello.h +++ b/tests/hello/ust_tests_hello.h @@ -25,13 +25,14 @@ #include TRACEPOINT_EVENT(ust_tests_hello_tptest, - TP_PROTO(int anint), - TP_ARGS(anint), + TP_PROTO(int anint, long *values), + TP_ARGS(anint, values), TP_FIELDS( ctf_integer(int, intfield, anint) ctf_integer_hex(int, intfield2, anint) ctf_integer_network(int, intfield3, anint) ctf_integer_network_hex(int, intfield4, anint) + ctf_array(long, arrfield1, values, 3) )) TRACEPOINT_EVENT_NOARGS(ust_tests_hello_tptest_sighandler,