Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
7376dca9
Commit
7376dca9
authored
22 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
slurm/slurm.h.in
+1
-0
1 addition, 0 deletions
slurm/slurm.h.in
src/common/slurm_protocol_defs.c
+4
-2
4 additions, 2 deletions
src/common/slurm_protocol_defs.c
with
5 additions
and
2 deletions
slurm/slurm.h.in
+
1
−
0
View file @
7376dca9
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
src/common/slurm_protocol_defs.c
+
4
−
2
View file @
7376dca9
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment