X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Ftp.h;h=d6d8d99bf39ee7bc7cf58d64c2af5c6ea48ff420;hb=8161463975e218e0833d31ab1577a7ceb9e8e9f3;hp=f7d07ae5e29bd1664c4fb6a8fb5e4ef52329a29d;hpb=a09dac63957396890b1085cac0fee92ecc5db87a;p=ust.git diff --git a/tests/hello/tp.h b/tests/hello/tp.h index f7d07ae..d6d8d99 100644 --- a/tests/hello/tp.h +++ b/tests/hello/tp.h @@ -1,4 +1,11 @@ -/* Copyright (C) 2009 Pierre-Marc Fournier +#undef TRACE_SYSTEM +#define TRACE_SYSTEM tp + +#if !defined(_TRACE_TP_H) || defined(TRACE_HEADER_MULTI_READ) +#define _TRACE_TP_H + +/* + * Copyright (C) 2011 Mathieu Desnoyers * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -17,6 +24,20 @@ #include -DECLARE_TRACE(hello_tptest, - TPPROTO(int anint), - TPARGS(anint)); +TRACEPOINT_EVENT(hello_tptest, + TP_PROTO(int anint), + TP_ARGS(anint), + TP_FIELDS()); + +TRACEPOINT_EVENT_NOARGS(hello_tptest2, + TP_FIELDS()); + +#endif /* _TRACE_TP_H */ + +#undef TRACE_INCLUDE_PATH +#define TRACE_INCLUDE_PATH . +#undef TRACE_INCLUDE_FILE +#define TRACE_INCLUDE_FILE tp + +/* This part must be outside protection */ +#include