Skip to content

Commit

Permalink
src: fix LTTNG tracepoints
Browse files Browse the repository at this point in the history
Added closing parentheses to LTTNG tracepoint definitions.

PR-URL: #9404
Reviewed-By: <tbd>
Reviewed-By: <tbd>
  • Loading branch information
joshgav committed Nov 1, 2016
1 parent ab19412 commit da68058
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/node_lttng_tp.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ TRACEPOINT_EVENT(
ctf_string(url, url)
ctf_string(method, method)
ctf_string(forwardedFor, forwardedFor))
)

TRACEPOINT_EVENT(
node,
Expand All @@ -37,6 +38,7 @@ TRACEPOINT_EVENT(
ctf_integer(int, port, port)
ctf_string(remote, remote)
ctf_integer(int, fd, fd))
)

TRACEPOINT_EVENT(
node,
Expand All @@ -47,6 +49,7 @@ TRACEPOINT_EVENT(
TP_FIELDS(
ctf_string(url, url)
ctf_string(method, method))
)

TRACEPOINT_EVENT(
node,
Expand All @@ -59,6 +62,7 @@ TRACEPOINT_EVENT(
ctf_integer(int, port, port)
ctf_string(remote, remote)
ctf_integer(int, fd, fd))
)

TRACEPOINT_EVENT(
node,
Expand All @@ -73,6 +77,7 @@ TRACEPOINT_EVENT(
ctf_integer(int, port, port)
ctf_integer(int, fd, fd)
ctf_integer(int, buffered, buffered))
)

TRACEPOINT_EVENT(
node,
Expand All @@ -85,6 +90,7 @@ TRACEPOINT_EVENT(
ctf_string(remote, remote)
ctf_integer(int, port, port)
ctf_integer(int, fd, fd))
)

TRACEPOINT_EVENT(
node,
Expand All @@ -106,6 +112,7 @@ TRACEPOINT_EVENT(
TP_FIELDS(
ctf_string(gctype, gctype)
ctf_string(gcflags, gcflags))
)

#endif /* __NODE_LTTNG_TP_H */

Expand Down

0 comments on commit da68058

Please sign in to comment.