lttng: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / trace / IKernelTrace.java
1 /*******************************************************************************
2 * Copyright (c) 2015 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 ******************************************************************************/
12
13 package org.eclipse.tracecompass.analysis.os.linux.core.trace;
14
15 import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
16
17 /**
18 * Trace type that represents a Linux kernel trace.
19 *
20 * Any trace implementing the interface should be able to run the different
21 * Linux kernel analyses in this plugin.
22 *
23 * @author Alexandre Montplaisir
24 */
25 public interface IKernelTrace extends ITmfTrace {
26
27 /**
28 * Get the event layout of this trace. Many known concepts from the Linux
29 * kernel may be exported under different names, depending on the tracer.
30 *
31 * @return The event layout
32 */
33 IKernelAnalysisEventLayout getKernelEventLayout();
34 }
This page took 0.042859 seconds and 5 git commands to generate.