Fix for NPE after disposing an experiment (Bug 381412)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / internal / lttng2 / kernel / core / StateValues.java
CommitLineData
3e97fbfa
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.internal.lttng2.kernel.core;
14
15public class StateValues {
16
17 /* CPU Status */
18 public static final int CPU_STATUS_IDLE = 0;
a080bb93
AM
19 public static final int CPU_STATUS_RUN_USERMODE = 1;
20 public static final int CPU_STATUS_RUN_SYSCALL = 2;
21 public static final int CPU_STATUS_IRQ = 3;
22 public static final int CPU_STATUS_SOFTIRQ = 4;
3e97fbfa
AM
23
24 /* Process status */
25 public static final int PROCESS_STATUS_WAIT = 1;
26 public static final int PROCESS_STATUS_RUN_USERMODE = 2;
27 public static final int PROCESS_STATUS_RUN_SYSCALL = 3;
28 public static final int PROCESS_STATUS_INTERRUPTED = 4;
29
30 /* SoftIRQ-specific stuff. -1: null/disabled, >= 0: running on that CPU */
31 public static final int SOFT_IRQ_RAISED = -2;
32}
This page took 0.028593 seconds and 5 git commands to generate.