summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2009-02-16 11:55:02 +0100
committerMark Wielaard <mjw@redhat.com>2009-02-16 11:55:02 +0100
commitc21c8f1bde29655ff85541507692982a1ffb09bd (patch)
tree34aa35d2d000f39f0c70b9bc3db3e30aceceeb25
parent7b534f489ed3567d8a59e00eb4ba954697a97059 (diff)
downloadsystemtap-steved-c21c8f1bde29655ff85541507692982a1ffb09bd.tar.gz
systemtap-steved-c21c8f1bde29655ff85541507692982a1ffb09bd.tar.xz
systemtap-steved-c21c8f1bde29655ff85541507692982a1ffb09bd.zip
Fix )( typo in sdt.h STAP_PROBE9 parm9.
-rw-r--r--runtime/ChangeLog4
-rw-r--r--runtime/sdt.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog
index 24de840c..ea3643a1 100644
--- a/runtime/ChangeLog
+++ b/runtime/ChangeLog
@@ -1,3 +1,7 @@
+2009-02-16 Mark Wielaard <scox@redhat.com>
+
+ * sdt.h (STAP_PROBE9): Fix )( typo in parm9.
+
2009-02-15 Stan Cox <scox@redhat.com>
* sdt.h (STAP_PROBE): Handle c++ via .probe, c via .label.
diff --git a/runtime/sdt.h b/runtime/sdt.h
index f09d4346..98a583dc 100644
--- a/runtime/sdt.h
+++ b/runtime/sdt.h
@@ -152,7 +152,7 @@ STAP_LABEL(probe,__LINE__): \
volatile typeof((parm6)) arg6 __attribute__ ((unused)) = parm6; \
volatile typeof((parm7)) arg7 __attribute__ ((unused)) = parm7; \
volatile typeof((parm8)) arg8 __attribute__ ((unused)) = parm8; \
- volatile typeof((parm9)) arg9 __attribute__ ((unused() = parm9; \
+ volatile typeof((parm9)) arg9 __attribute__ ((unused)) = parm9; \
STAP_LABEL(probe,__LINE__): \
asm volatile ("nop" :: "g"(arg1), "g"(arg2), "g"(arg3), "g"(arg4), "g"(arg5), "g"(arg6), "g"(arg7), "g"(arg8), "g"(arg9)); \
STAP_PROBE_STRUCT(probe,(size_t)&& STAP_LABEL(probe,__LINE__)) \