lttng: Use interfaces for constant definitions
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / internal / lttng2 / kernel / core / LttngStrings.java
CommitLineData
ee8e0dc9
AM
1/*******************************************************************************
2 * Copyright (c) 2012 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
7c08c319 13package org.eclipse.linuxtools.internal.lttng2.kernel.core;
ee8e0dc9
AM
14
15/**
16 * This file defines all the known event and field names for LTTng 2.0 kernel
17 * traces.
d85d2a6d 18 *
ee8e0dc9
AM
19 * Once again, these should not be externalized, since they need to match
20 * exactly what the tracer outputs. If you want to localize them in a view, you
21 * should do a mapping in the viewer itself.
d85d2a6d 22 *
ee8e0dc9 23 * @author alexmont
d85d2a6d 24 *
ee8e0dc9 25 */
d85d2a6d 26@SuppressWarnings({"javadoc", "nls"})
6d9da7b0 27public interface LttngStrings {
ee8e0dc9
AM
28
29 /* Event names */
6d9da7b0
AM
30 static final String EXIT_SYSCALL = "exit_syscall";
31 static final String IRQ_HANDLER_ENTRY = "irq_handler_entry";
32 static final String IRQ_HANDLER_EXIT = "irq_handler_exit";
33 static final String SOFTIRQ_ENTRY = "softirq_entry";
34 static final String SOFTIRQ_EXIT = "softirq_exit";
35 static final String SOFTIRQ_RAISE = "softirq_raise";
36 static final String SCHED_SWITCH = "sched_switch";
37 static final String SCHED_PROCESS_FORK = "sched_process_fork";
38 static final String SCHED_PROCESS_EXIT = "sched_process_exit";
39 static final String SCHED_PROCESS_FREE = "sched_process_free";
40 static final String STATEDUMP_PROCESS_STATE = "lttng_statedump_process_state";
ee8e0dc9 41
6d9da7b0
AM
42 /* System call names */
43 static final String SYSCALL_PREFIX = "sys_";
44 static final String COMPAT_SYSCALL_PREFIX = "compat_sys_";
ee8e0dc9 45
ee8e0dc9 46 /* Field names */
6d9da7b0
AM
47 static final String IRQ = "irq";
48 static final String COMM = "comm";
49 static final String NAME = "name";
50 static final String TID = "tid";
51 static final String PPID = "ppid";
52 static final String STATUS = "status";
53 static final String VEC = "vec";
54 static final String PREV_COMM = "prev_comm";
55 static final String PREV_TID = "prev_tid";
56 static final String PREV_STATE = "prev_state";
57 static final String NEXT_COMM = "next_comm";
58 static final String NEXT_TID = "next_tid";
59 static final String PARENT_TID = "parent_tid";
60 static final String CHILD_COMM = "child_comm";
61 static final String CHILD_TID = "child_tid";
ee8e0dc9 62}
This page took 0.031576 seconds and 5 git commands to generate.