From 7376dca9cc4475fecdce8a9b682e1c9a00a100ef Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Tue, 25 Feb 2003 23:29:26 +0000 Subject: [PATCH] Add new job step COMPLETING for time before epilog completes. --- slurm/slurm.h.in | 1 + src/common/slurm_protocol_defs.c | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/slurm/slurm.h.in b/slurm/slurm.h.in index 87503970475..d5b54b84509 100644 --- a/slurm/slurm.h.in +++ b/slurm/slurm.h.in @@ -99,6 +99,7 @@ BEGIN_C_DECLS enum job_states { JOB_PENDING, /* queued waiting for initiation */ JOB_RUNNING, /* allocated resources and executing */ + JOB_COMPLETING, /* completing execution */ JOB_COMPLETE, /* completed execution successfully */ JOB_FAILED, /* completed execution unsuccessfully */ JOB_TIMEOUT, /* terminated on reaching time limit */ diff --git a/src/common/slurm_protocol_defs.c b/src/common/slurm_protocol_defs.c index bdd943de2e0..d96d5c875c9 100644 --- a/src/common/slurm_protocol_defs.c +++ b/src/common/slurm_protocol_defs.c @@ -292,7 +292,8 @@ char *job_state_string(enum job_states inx) static char *job_state_string[] = { "PENDING", "RUNNING", - "COMPLETE", + "COMPLETING", + "COMPLETED", "FAILED", "TIMEOUT", "NODE_FAIL", @@ -306,7 +307,8 @@ char *job_state_string_compact(enum job_states inx) static char *job_state_string[] = { "PD", "R", - "C", + "CG", + "CD", "F", "TO", "END" -- GitLab