blob: 59e320988a5da78a816a8b52fe1deeae2994833f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 School of Computer Science,
* National University of Defense Technology, P.R.China.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Jie Jiang, National University of Defense Technology
*******************************************************************************/
package org.eclipse.ptp.rm.slurm.core;
/**
* SLURM Process status
*/
public class SLURMMPIProcessAttributes {
public enum Status {
PENDING,
RUNNING,
SUSPENDED,
COMPLETED,
CANCELLED,
FAILED,
TIMEOUT,
NODEFAIL
}
}