diff options
author | David Smith <dsmith@redhat.com> | 2009-06-18 13:10:21 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-06-18 13:10:21 -0500 |
commit | 3bb3a45a38238f2d1ff5cecfd2cf66b288232a1f (patch) | |
tree | 90094894e41fcbdeb10acf196f0840002c5b146f /includes/sys/sdt.h | |
parent | 24a5e9a6a87b2f7c8b7264ceb94c65a3a9550d47 (diff) | |
parent | d2309c6c3fb97cc0c8931b59e33fe18820b63c5d (diff) | |
download | systemtap-steved-3bb3a45a38238f2d1ff5cecfd2cf66b288232a1f.tar.gz systemtap-steved-3bb3a45a38238f2d1ff5cecfd2cf66b288232a1f.tar.xz systemtap-steved-3bb3a45a38238f2d1ff5cecfd2cf66b288232a1f.zip |
Merge commit 'origin/master' into pr7043
Diffstat (limited to 'includes/sys/sdt.h')
-rw-r--r-- | includes/sys/sdt.h | 8 |
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) \ |