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
1531bab7
Commit
1531bab7
authored
22 years ago
by
Mark Grondona
Browse files
Options
Downloads
Patches
Plain Diff
o add new errno ESLURMD_JOB_NOTRUNNING for job step not running error in
attach
parent
04b376ef
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_errno.h
+1
-0
1 addition, 0 deletions
slurm/slurm_errno.h
src/common/slurm_errno.c
+2
-0
2 additions, 0 deletions
src/common/slurm_errno.c
with
3 additions
and
0 deletions
slurm/slurm_errno.h
+
1
−
0
View file @
1531bab7
...
@@ -160,6 +160,7 @@ enum {
...
@@ -160,6 +160,7 @@ enum {
ESLURMD_SESSION_KILLED
,
ESLURMD_SESSION_KILLED
,
ESLURMD_TOOMANYSTEPS
,
ESLURMD_TOOMANYSTEPS
,
ESLURMD_STEP_EXISTS
,
ESLURMD_STEP_EXISTS
,
ESLURMD_JOB_NOTRUNNING
,
/* slurmd errors in user batch job */
/* slurmd errors in user batch job */
ESCRIPT_CHDIR_FAILED
=
4100
,
ESCRIPT_CHDIR_FAILED
=
4100
,
...
...
This diff is collapsed.
Click to expand it.
src/common/slurm_errno.c
+
2
−
0
View file @
1531bab7
...
@@ -222,6 +222,8 @@ static slurm_errtab_t slurm_errtab[] = {
...
@@ -222,6 +222,8 @@ static slurm_errtab_t slurm_errtab[] = {
"Too many job steps on node"
},
"Too many job steps on node"
},
{
ESLURMD_STEP_EXISTS
,
{
ESLURMD_STEP_EXISTS
,
"Job step already in shared memory"
},
"Job step already in shared memory"
},
{
ESLURMD_JOB_NOTRUNNING
,
"Job step not running"
},
/* slurmd errors in user batch job */
/* slurmd errors in user batch job */
{
ESCRIPT_CHDIR_FAILED
,
{
ESCRIPT_CHDIR_FAILED
,
...
...
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