lttng: Add plugins and trace type for UST traces
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Wed, 3 Jul 2013 20:24:39 +0000 (16:24 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Wed, 17 Jul 2013 20:30:57 +0000 (16:30 -0400)
commit91fc369040ce95d9f7db001d24d0193c3f19f02d
tree714fd627eb4c59f4c4a77fff4837d157c7d8b055
parent8d534d69a05974b5f27549c4d29bac19890a24e7
lttng: Add plugins and trace type for UST traces

These plugins add support for a new "CTF : LTTng UST" trace type, which
are generated by the LTTng-UST library (and not the kernel tracer).

For now this type will be pretty much identical to the Genric CTF Trace
type, but it will allow us to eventually add UST-specific features, like
specific Events view, Statistics view, state systems, and whatnot.

Change-Id: Ic9cfc57fce8122128916444022529bc66eb84ad5
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Reviewed-on: https://git.eclipse.org/r/12370
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
IP-Clean: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Hudson CI
Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
76 files changed:
org.eclipse.linuxtools.lttng.alltests/META-INF/MANIFEST.MF
org.eclipse.linuxtools.lttng.alltests/src/org/eclipse/linuxtools/lttng/alltests/RunAllTests.java
org.eclipse.linuxtools.lttng2.ust.core.tests/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.gitignore [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.project [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/.settings/org.eclipse.pde.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/about.html [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/ActivatorTest.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/AllTests.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.gitignore [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.project [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/.settings/org.eclipse.pde.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/about.html [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/internal/lttng2/ust/core/Activator.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/lttng2/ust/core/trace/LttngUstTrace.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/lttng2/ust/core/trace/Messages.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.core/src/org/eclipse/linuxtools/lttng2/ust/core/trace/messages.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.gitignore [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.project [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/about.html [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/src/org/eclipse/linuxtools/lttng2/ust/ui/tests/ActivatorTest.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui.tests/src/org/eclipse/linuxtools/lttng2/ust/ui/tests/AllTests.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.gitignore [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.project [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/.settings/org.eclipse.pde.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/about.html [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/icons/obj16/garland16.png [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/plugin.xml [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust.ui/src/org/eclipse/linuxtools/internal/lttng2/ust/ui/Activator.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/.gitignore [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/.project [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/epl-v10.html [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/feature.properties [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/feature.xml [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/license.html [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/p2.inf [new file with mode: 0644]
org.eclipse.linuxtools.lttng2.ust/pom.xml [new file with mode: 0644]
pom.xml
This page took 0.046311 seconds and 5 git commands to generate.