Skip to content
Snippets Groups Projects
Commit 7376dca9 authored by Moe Jette's avatar Moe Jette
Browse files

Add new job step COMPLETING for time before epilog completes.

parent 88e243d8
No related branches found
No related tags found
No related merge requests found
...@@ -99,6 +99,7 @@ BEGIN_C_DECLS ...@@ -99,6 +99,7 @@ BEGIN_C_DECLS
enum job_states { enum job_states {
JOB_PENDING, /* queued waiting for initiation */ JOB_PENDING, /* queued waiting for initiation */
JOB_RUNNING, /* allocated resources and executing */ JOB_RUNNING, /* allocated resources and executing */
JOB_COMPLETING, /* completing execution */
JOB_COMPLETE, /* completed execution successfully */ JOB_COMPLETE, /* completed execution successfully */
JOB_FAILED, /* completed execution unsuccessfully */ JOB_FAILED, /* completed execution unsuccessfully */
JOB_TIMEOUT, /* terminated on reaching time limit */ JOB_TIMEOUT, /* terminated on reaching time limit */
......
...@@ -292,7 +292,8 @@ char *job_state_string(enum job_states inx) ...@@ -292,7 +292,8 @@ char *job_state_string(enum job_states inx)
static char *job_state_string[] = { static char *job_state_string[] = {
"PENDING", "PENDING",
"RUNNING", "RUNNING",
"COMPLETE", "COMPLETING",
"COMPLETED",
"FAILED", "FAILED",
"TIMEOUT", "TIMEOUT",
"NODE_FAIL", "NODE_FAIL",
...@@ -306,7 +307,8 @@ char *job_state_string_compact(enum job_states inx) ...@@ -306,7 +307,8 @@ char *job_state_string_compact(enum job_states inx)
static char *job_state_string[] = { static char *job_state_string[] = {
"PD", "PD",
"R", "R",
"C", "CG",
"CD",
"F", "F",
"TO", "TO",
"END" "END"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment