Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharley Wang2010-01-26 15:49:03 +0000
committerCharley Wang2010-01-26 15:49:03 +0000
commit34488646d5a9c3b28960c8d208ffc17dbf6197fc (patch)
treef81579358259beec339d99e7e8f0a31d53b90e05 /systemtap/org.eclipse.linuxtools.callgraph.core
parent98acca8bb07e54fba77adb521bbc098ab2505663 (diff)
downloadorg.eclipse.linuxtools-34488646d5a9c3b28960c8d208ffc17dbf6197fc.tar.gz
org.eclipse.linuxtools-34488646d5a9c3b28960c8d208ffc17dbf6197fc.tar.xz
org.eclipse.linuxtools-34488646d5a9c3b28960c8d208ffc17dbf6197fc.zip
2010-01-26 Charley Wang <chwang@redhat.com>
* src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java: Fix settings for nonrealtimeparsing.
Diffstat (limited to 'systemtap/org.eclipse.linuxtools.callgraph.core')
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.core/ChangeLog4
-rw-r--r--systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java2
2 files changed, 5 insertions, 1 deletions
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.core/ChangeLog b/systemtap/org.eclipse.linuxtools.callgraph.core/ChangeLog
index a0e99330dd..4db108f00f 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.core/ChangeLog
+++ b/systemtap/org.eclipse.linuxtools.callgraph.core/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-26 Charley Wang <chwang@redhat.com>
+
+ * src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java: Fix settings for nonrealtimeparsing.
+
2010-01-22 Roland Grunberg <rgrunber@redhat.com>
* errors.prop: Add case for when uprobes.ko built for a previous kernel, and must be updated.
diff --git a/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java b/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java
index 5129802676..3039d7465d 100644
--- a/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java
+++ b/systemtap/org.eclipse.linuxtools.callgraph.core/src/org/eclipse/linuxtools/callgraph/core/SystemTapParser.java
@@ -163,7 +163,6 @@ public abstract class SystemTapParser extends Job {
if (this.monitor == null) {
this.monitor = new NullProgressMonitor();
}
- makeView();
if (realTime && (job == null || job.getResult()==null)) {
job = new RunTimeJob("RealTimeParser"); //$NON-NLS-1$
@@ -171,6 +170,7 @@ public abstract class SystemTapParser extends Job {
} else {
returnStatus = nonRealTimeParsing();
}
+ makeView();
if (!returnStatus.isOK()){

Back to the top