Commit | Line | Data |
---|---|---|
2b6f8df9 MD |
1 | #undef TRACEPOINT_SYSTEM |
2 | #define TRACEPOINT_SYSTEM ust_java | |
3 | ||
4 | #if !defined(_TRACEPOINT_UST_JAVA_H) || defined(TRACEPOINT_HEADER_MULTI_READ) | |
5 | #define _TRACEPOINT_UST_JAVA_H | |
6 | ||
7 | /* | |
8 | * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
9 | * | |
10 | * This library is free software; you can redistribute it and/or | |
11 | * modify it under the terms of the GNU Lesser General Public | |
12 | * License as published by the Free Software Foundation; version 2.1 of | |
13 | * the License. | |
14 | * | |
15 | * This library is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
18 | * Lesser General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU Lesser General Public | |
21 | * License along with this library; if not, write to the Free Software | |
22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
23 | */ | |
24 | ||
25 | #include <ust/tracepoint.h> | |
26 | ||
27 | TRACEPOINT_EVENT(ust_java_event, | |
28 | TP_PROTO(const char *name, const char *args), | |
29 | TP_ARGS(name, args), | |
30 | TP_FIELDS( | |
31 | ctf_string(name, name) | |
32 | ctf_string(args, args) | |
33 | ) | |
34 | ) | |
35 | ||
36 | #endif /* _TRACEPOINT_UST_JAVA_H */ | |
37 | ||
38 | #undef TRACEPOINT_INCLUDE_PATH | |
39 | #define TRACEPOINT_INCLUDE_PATH . | |
40 | #undef TRACEPOINT_INCLUDE_FILE | |
41 | #define TRACEPOINT_INCLUDE_FILE ust_java | |
42 | ||
43 | /* This part must be outside protection */ | |
44 | #include <ust/tracepoint-event.h> |