-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src: fix LTTNG tracepoint macros #9404
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM if it works.
Added closing parentheses to LTTNG tracepoint definitions. PR-URL: nodejs#9404 Reviewed-By: <tbd> Reviewed-By: <tbd>
This builds now but the tracepoints don't show in |
pretty odd, probably @thekemkid's wheelhouse |
Ping @nodejs/diagnostics |
Oh crud, just seeing this now -> let me figure out what's up with lttng later and I will post findings. The code however lgtm |
@joshgav ... is this still needed? |
closing this since I don't know when I'll be able to pick it up again, will open a new issue at that point. Thanks! |
Checklist
make -j8 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
src
Description of change
Closing parentheses from
TRACEPOINT_EVENT
were removed accidentally in #7462, specifically f1d2792. As a result, building following./configure --with-lttng
fails.This PR simply adds closing parentheses to the LTTNG tracepoint definitions to fix this.