summaryrefslogtreecommitdiffstats
path: root/includes/sys/sdt.h
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-06-18 11:46:45 -0400
committerDave Brolley <brolley@redhat.com>2009-06-18 11:46:45 -0400
commitd729143af5242b17645d3f405141918940680894 (patch)
tree165520a77b1b53b83284d115ec62b77679e28f42 /includes/sys/sdt.h
parent8f222481f9c010f4c3d8060726234dbb779ce77f (diff)
parent76248b8b52d687abb52c5e69eda7927f84d2e483 (diff)
downloadsystemtap-steved-d729143af5242b17645d3f405141918940680894.tar.gz
systemtap-steved-d729143af5242b17645d3f405141918940680894.tar.xz
systemtap-steved-d729143af5242b17645d3f405141918940680894.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'includes/sys/sdt.h')
-rw-r--r--includes/sys/sdt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h
index 10639d9c..0f86cc3b 100644
--- a/includes/sys/sdt.h
+++ b/includes/sys/sdt.h
@@ -257,10 +257,10 @@ do { \
syscall (STAP_SYSCALL, #probe, GETTID); \
} while (0)
-#define STAP_PROBE1_(probe,label,parm1) \
-do { \
- STAP_PROBE_DATA(probe,STAP_GUARD,1); \
- syscall (STAP_SYSCALL, #probe, GETTID, parm1); \
+#define STAP_PROBE1_(probe,label,parm1) \
+do { \
+ STAP_PROBE_DATA(probe,STAP_GUARD,1); \
+ syscall (STAP_SYSCALL, #probe, GETTID, (size_t)parm1); \
} while (0)
#define STAP_PROBE2_(probe,label,parm1,parm2) \