blob: ec9ca66b0496fa8a80b81dc87105e181042240e7 [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 Job status
*/
public class SLURMMPIJobAttributes {
public enum Status {
PENDING,
RUNNING,
SUSPENDED,
COMPLETED,
CANCELLED,
FAILED,
TIMEOUT,
NODEFAIL
}
}