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 / kernelanalysis / Attributes.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 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.kernelanalysis;
14
15 /**
16 * This file defines all the attribute names used in the handler. Both the
17 * construction and query steps should use them.
18 *
19 * These should not be externalized! The values here are used as-is in the
20 * history file on disk, so they should be kept the same to keep the file format
21 * compatible. If a view shows attribute names directly, the localization should
22 * be done on the viewer side.
23 *
24 * @author alexmont
25 *
26 */
27 @SuppressWarnings({"nls", "javadoc"})
28 public interface Attributes {
29
30 /* First-level attributes */
31 String CPUS = "CPUs";
32 String THREADS = "Threads";
33 String RESOURCES = "Resources";
34
35 /* Sub-attributes of the CPU nodes */
36 String CURRENT_THREAD = "Current_thread";
37 String STATUS = "Status";
38
39 /* Sub-attributes of the Thread nodes */
40 String PPID = "PPID";
41 //static final String STATUS = "Status"
42 String EXEC_NAME = "Exec_name";
43
44 /** @since 1.0 */
45 String PRIO = "Prio";
46 String SYSTEM_CALL = "System_call";
47
48 /* Attributes under "Resources" */
49 String IRQS = "IRQs";
50 String SOFT_IRQS = "Soft_IRQs";
51
52 /* Misc stuff */
53 String UNKNOWN = "Unknown";
54 }
This page took 0.102781 seconds and 5 git commands to generate.