diff options
| author | Paul Bütow <pbuetow@mimecast.com> | 2018-12-19 15:25:41 +0000 |
|---|---|---|
| committer | Paul Bütow <pbuetow@mimecast.com> | 2018-12-19 15:25:41 +0000 |
| commit | 79babb8c78250de3c32e1a4ee82607766657b09f (patch) | |
| tree | 6e5539d715212f2a22f0f53c4841a4264835a892 | |
| parent | f1d439c16a3c576bc6bde5ff42e83f5eb65dfc18 (diff) | |
bump capture version
| -rw-r--r-- | ioriot/src/defaults.h | 2 | ||||
| -rw-r--r-- | systemtap/src/ioriot.stp | 2 | ||||
| -rw-r--r-- | systemtap/src/javaioriot.stp | 2 | ||||
| -rw-r--r-- | systemtap/src/targetedioriot.stp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ioriot/src/defaults.h b/ioriot/src/defaults.h index 24399a9..89456d0 100644 --- a/ioriot/src/defaults.h +++ b/ioriot/src/defaults.h @@ -18,7 +18,7 @@ #include "utils/utils.h" /** Version of the supported .capture format */ -#define CAPTURE_VERSION 2 +#define CAPTURE_VERSION 3 /** Version of the supported .replay format */ #define REPLAY_VERSION 2 /** Max amount of tokens per line in the .capture file */ diff --git a/systemtap/src/ioriot.stp b/systemtap/src/ioriot.stp index 529bfb6..cefc8da 100644 --- a/systemtap/src/ioriot.stp +++ b/systemtap/src/ioriot.stp @@ -80,7 +80,7 @@ probe timer.s(3600) { } probe begin { - printf("#|capture_version=%d|\n", 2); + printf("#|capture_version=%d|\n", 3); } probe syscall.open, syscall.openat { diff --git a/systemtap/src/javaioriot.stp b/systemtap/src/javaioriot.stp index 3b50e36..4600aee 100644 --- a/systemtap/src/javaioriot.stp +++ b/systemtap/src/javaioriot.stp @@ -80,7 +80,7 @@ probe timer.s(3600) { } probe begin { - printf("#|capture_version=%d|\n", 2); + printf("#|capture_version=%d|\n", 3); } probe syscall.open, syscall.openat { diff --git a/systemtap/src/targetedioriot.stp b/systemtap/src/targetedioriot.stp index f44dd4f..642c382 100644 --- a/systemtap/src/targetedioriot.stp +++ b/systemtap/src/targetedioriot.stp @@ -80,7 +80,7 @@ probe timer.s(3600) { } probe begin { - printf("#|capture_version=%d|\n", 2); + printf("#|capture_version=%d|\n", 3); } probe syscall.open, syscall.openat { |
