Build TRACEPOINT_EVENT integer type
[ust.git] / tests / hello / tp.h
index 73819514d3e266512177bc09aa531228a074ff36..7fa16e904c835ac5145d4e8d4aed459e7786bb6a 100644 (file)
@@ -1,4 +1,11 @@
-/* Copyright (C) 2009  Pierre-Marc Fournier
+#undef TRACEPOINT_SYSTEM
+#define TRACEPOINT_SYSTEM tp
+
+#if !defined(_TRACEPOINT_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
+#define _TRACEPOINT_TP_H
+
+/*
+ * Copyright (C) 2011  Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
 
 #include <ust/tracepoint.h>
 
-DECLARE_TRACE(hello_tptest,
-             TP_PROTO(int anint),
-             TP_ARGS(anint));
+TRACEPOINT_EVENT(ust_tests_hello_tptest,
+                       TP_PROTO(int anint),
+                       TP_ARGS(anint),
+                       TP_FIELDS(
+                               ctf_integer(int, intfield, anint)
+                       ))
+
+TRACEPOINT_EVENT_NOARGS(ust_tests_hello_tptest_sighandler,
+                       TP_FIELDS())
+
+#endif /* _TRACEPOINT_TP_H */
+
+#undef TRACEPOINT_INCLUDE_PATH
+#define TRACEPOINT_INCLUDE_PATH .
+#undef TRACEPOINT_INCLUDE_FILE
+#define TRACEPOINT_INCLUDE_FILE tp
 
-DECLARE_TRACE_NOARGS(hello_tptest2);
+/* This part must be outside protection */
+#include <ust/tracepoint-event.h>
This page took 0.022832 seconds and 4 git commands to generate.