lttng: Rework the IRQ event handler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / lttng2 / kernel / core / trace / 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
13package org.eclipse.linuxtools.lttng2.kernel.core.trace;
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("nls")
27public 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
41 public static final String SYSCALL_PREFIX = "sys_";
42 public static final String COMPAT_SYSCALL_PREFIX = "compat_sys_";
43
ee8e0dc9
AM
44 /* Field names */
45 public static final String IRQ = "irq";
46 public static final String COMM = "comm";
47 public static final String TID = "tid";
06552532 48 public static final String VEC = "vec";
ee8e0dc9
AM
49 public static final String PREV_COMM = "prev_comm";
50 public static final String PREV_TID = "prev_tid";
51 public static final String PREV_STATE = "prev_state";
52 public static final String NEXT_COMM = "next_comm";
53 public static final String NEXT_TID = "next_tid";
54 public static final String PARENT_TID = "parent_tid";
55 public static final String CHILD_COMM = "child_comm";
56 public static final String CHILD_TID = "child_tid";
57}
This page took 0.026048 seconds and 5 git commands to generate.