Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Tasse2014-07-18 14:22:44 +0000
committerPatrick Tasse2014-07-25 21:25:35 +0000
commit0e5509d414889599168ac3008a0c4de08d71ae03 (patch)
tree69b0f49c5d56a57cd26667370447c3369791e4a0
parent7eefe86e3aec3a1aa16ef93cc81ecfe5c954ed52 (diff)
downloadorg.eclipse.linuxtools-0e5509d414889599168ac3008a0c4de08d71ae03.tar.gz
org.eclipse.linuxtools-0e5509d414889599168ac3008a0c4de08d71ae03.tar.xz
org.eclipse.linuxtools-0e5509d414889599168ac3008a0c4de08d71ae03.zip
lttng: Step version of UST call stack state system provider
Incremented due to changes for thread id. Change-Id: I45cb63a2bc84f5ffd49495464697babac76b66bf Signed-off-by: Patrick Tasse <patrick.tasse@gmail.com> Reviewed-on: https://git.eclipse.org/r/30126 Tested-by: Hudson CI Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
-rw-r--r--lttng/org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/internal/lttng2/ust/core/trace/callstack/LttngUstCallStackProvider.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/lttng/org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/internal/lttng2/ust/core/trace/callstack/LttngUstCallStackProvider.java b/lttng/org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/internal/lttng2/ust/core/trace/callstack/LttngUstCallStackProvider.java
index b01a6de58e..15bc30a1aa 100644
--- a/lttng/org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/internal/lttng2/ust/core/trace/callstack/LttngUstCallStackProvider.java
+++ b/lttng/org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/internal/lttng2/ust/core/trace/callstack/LttngUstCallStackProvider.java
@@ -69,7 +69,7 @@ public class LttngUstCallStackProvider extends CallStackStateProvider {
* Version number of this state provider. Please bump this if you modify
* the contents of the generated state history in some way.
*/
- private static final int VERSION = 1;
+ private static final int VERSION = 2;
// ------------------------------------------------------------------------
// Constructor

Back to the top