~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/client/lttng/rpc_report_tp.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-10-10 14:01:26 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20141010140126-n1czko8na1kuz4ll
Tags: upstream-0.8.0+14.10.20141010
ImportĀ upstreamĀ versionĀ 0.8.0+14.10.20141010

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <lttng/tracepoint.h>
29
29
#include <stdint.h>
30
30
 
31
 
#ifdef __clang__
32
 
/*
33
 
 * TRACEPOINT_EVENT defines functions; since we disable tracepoints under clang
34
 
 * these functions are unused and so generate fatal warnings.
35
 
 * (see mir_tracepoint.h and http://sourceware.org/bugzilla/show_bug.cgi?id=13974)
36
 
 */
37
 
#pragma clang diagnostic push
38
 
#pragma clang diagnostic warning "-Wunused-function"
39
 
#endif
40
 
 
41
31
TRACEPOINT_EVENT(
42
32
    mir_client_rpc,
43
33
    invocation_requested,
94
84
    )
95
85
)
96
86
 
97
 
#ifdef __clang__
98
 
#pragma clang diagnostic pop
99
 
#endif
100
 
 
101
87
#endif /* MIR_CLIENT_LTTNG_RPC_REPORT_TP_H_ */
102
88
 
103
89
#include <lttng/tracepoint-event.h>