lttng: Handle the statedump events
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / internal / lttng2 / kernel / core / LttngStrings.java
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
13 package org.eclipse.linuxtools.internal.lttng2.kernel.core;
14
15 /**
16 * This file defines all the known event and field names for LTTng 2.0 kernel
17 * traces.
18 *
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.
22 *
23 * @author alexmont
24 *
25 */
26 @SuppressWarnings({"javadoc", "nls"})
27 public abstract class LttngStrings {
28
29 /* Event names */
30 public static final String EXIT_SYSCALL = "exit_syscall";
31 public static final String IRQ_HANDLER_ENTRY = "irq_handler_entry";
32 public static final String IRQ_HANDLER_EXIT = "irq_handler_exit";
33 public static final String SOFTIRQ_ENTRY = "softirq_entry";
34 public static final String SOFTIRQ_EXIT = "softirq_exit";
35 public static final String SOFTIRQ_RAISE = "softirq_raise";
36 public static final String SCHED_SWITCH = "sched_switch";
37 public static final String SCHED_PROCESS_FORK = "sched_process_fork";
38 public static final String SCHED_PROCESS_EXIT = "sched_process_exit";
39 public static final String SCHED_PROCESS_FREE = "sched_process_free";
40 public static final String STATEDUMP_PROCESS_STATE = "lttng_statedump_process_state";
41
42 public static final String SYSCALL_PREFIX = "sys_";
43 public static final String COMPAT_SYSCALL_PREFIX = "compat_sys_";
44
45 /* Field names */
46 public static final String IRQ = "irq";
47 public static final String COMM = "comm";
48 public static final String NAME = "name";
49 public static final String TID = "tid";
50 public static final String PPID = "ppid";
51 public static final String STATUS = "status";
52 public static final String VEC = "vec";
53 public static final String PREV_COMM = "prev_comm";
54 public static final String PREV_TID = "prev_tid";
55 public static final String PREV_STATE = "prev_state";
56 public static final String NEXT_COMM = "next_comm";
57 public static final String NEXT_TID = "next_tid";
58 public static final String PARENT_TID = "parent_tid";
59 public static final String CHILD_COMM = "child_comm";
60 public static final String CHILD_TID = "child_tid";
61 }
This page took 0.034432 seconds and 6 git commands to generate.