diff options
author | David Smith <dsmith@redhat.com> | 2009-06-19 11:13:15 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-06-19 11:13:15 -0500 |
commit | 3aae22ce894f935ac1371f501a09cecfbde18727 (patch) | |
tree | 74588ae42ed917606bdf4a2b2dd9e3e743534363 /runtime/transport | |
parent | 76d9a838820b78ab93f9faeb1dcf20f2ec509fc3 (diff) | |
download | systemtap-steved-3aae22ce894f935ac1371f501a09cecfbde18727.tar.gz systemtap-steved-3aae22ce894f935ac1371f501a09cecfbde18727.tar.xz systemtap-steved-3aae22ce894f935ac1371f501a09cecfbde18727.zip |
Disabled transport version 3 (for now).
Diffstat (limited to 'runtime/transport')
-rw-r--r-- | runtime/transport/transport.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c index 7f844f5d..1d029e53 100644 --- a/runtime/transport/transport.c +++ b/runtime/transport/transport.c @@ -31,6 +31,12 @@ static int _stp_ctl_attached = 0; static pid_t _stp_target = 0; static int _stp_probes_started = 0; +// For now, disable transport version 3 +#if STP_TRANSPORT_VERSION == 3 +#undef STP_TRANSPORT_VERSION +#define STP_TRANSPORT_VERSION 2 +#endif + #include "control.h" #if STP_TRANSPORT_VERSION == 1 #include "relayfs.c" |