Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Linux Tools Capabilities Helios

Revision as of 16:58, 18 May 2010 by Charley.wang.gmail.com (Talk | contribs) (Capabilities)

Introduction

This documents Linux Tools Capabilities for the Helios release.

Capabilities

Linux Tools provides a single capability plugin that covers the majority of Linux Tools projects. This plugin is named org.eclipse.linuxtools.profiling.ui.capability. Capabilities for additional Linux Tools projects can be created by copying and pasting activityPatternBinding segments from the plugin.xml in this project and changing the project name.

Covered projects:

  1. Gprof
  2. Gcov
  3. Lttng
  4. Tmf
  5. SystemTap GUI/Dashboard
  6. Callgraph
  7. Valgrind
  8. OProfile

Accessing

The capability plugin can be accessed from our SVN:

From an Eclipse SVN plugin, choose to add a new Repository and enter:

 svn://dev.eclipse.org/svnroot/technology/org.eclipse.linuxtools

The capability plugin can be found in this repository under profiling --> trunk --> org.eclipse.linuxtools.profiling.ui.capability.

Example

For your convenience, here is the set of activityPatternBinding segments for Callgraph:

<activityPatternBinding
   activityId="org.eclipse.linuxtools.profiling.ui.capabilities"
   pattern="org\.eclipse\.linuxtools\.callgraph\..*/*">
</activityPatternBinding>
<activityPatternBinding
   activityId="org.eclipse.linuxtools.profiling.ui.capabilities"
   pattern="org\.eclipse\.linuxtools\.callgraph/*">
</activityPatternBinding>

Back to the top