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
a5d8c390
Commit
a5d8c390
authored
20 years ago
by
Mark Grondona
Browse files
Options
Downloads
Patches
Plain Diff
o change prototypes and remove code to suppress warnings
parent
be5880e4
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/srun/allocate.c
+2
-1
2 additions, 1 deletion
src/srun/allocate.c
src/srun/allocate.h
+1
-1
1 addition, 1 deletion
src/srun/allocate.h
src/srun/env.c
+1
-1
1 addition, 1 deletion
src/srun/env.c
src/srun/launch.c
+0
-5
0 additions, 5 deletions
src/srun/launch.c
with
4 additions
and
8 deletions
src/srun/allocate.c
+
2
−
1
View file @
a5d8c390
...
@@ -40,6 +40,7 @@
...
@@ -40,6 +40,7 @@
#include
"src/srun/allocate.h"
#include
"src/srun/allocate.h"
#include
"src/srun/msg.h"
#include
"src/srun/msg.h"
#include
"src/srun/opt.h"
#include
"src/srun/opt.h"
#include
"src/srun/env.h"
#include
"src/srun/attach.h"
#include
"src/srun/attach.h"
#define MAX_ALLOC_WAIT 60
/* seconds */
#define MAX_ALLOC_WAIT 60
/* seconds */
...
@@ -214,7 +215,7 @@ _intr_handler(int signo)
...
@@ -214,7 +215,7 @@ _intr_handler(int signo)
* (see opt.h)
* (see opt.h)
*/
*/
job_desc_msg_t
*
job_desc_msg_t
*
job_desc_msg_create_from_opts
(
const
char
*
script
)
job_desc_msg_create_from_opts
(
char
*
script
)
{
{
extern
char
**
environ
;
extern
char
**
environ
;
job_desc_msg_t
*
j
=
xmalloc
(
sizeof
(
*
j
));
job_desc_msg_t
*
j
=
xmalloc
(
sizeof
(
*
j
));
...
...
This diff is collapsed.
Click to expand it.
src/srun/allocate.h
+
1
−
1
View file @
a5d8c390
...
@@ -47,7 +47,7 @@ resource_allocation_response_msg_t * allocate_nodes(void);
...
@@ -47,7 +47,7 @@ resource_allocation_response_msg_t * allocate_nodes(void);
* (see opt.h), if script != NULL then this is a batch job.
* (see opt.h), if script != NULL then this is a batch job.
* The resulting memory must be freed with job_desc_msg_destroy()
* The resulting memory must be freed with job_desc_msg_destroy()
*/
*/
job_desc_msg_t
*
job_desc_msg_create_from_opts
(
const
char
*
script
);
job_desc_msg_t
*
job_desc_msg_create_from_opts
(
char
*
script
);
/*
/*
* Destroy (free memory from) a job_desc_msg_t object allocated with
* Destroy (free memory from) a job_desc_msg_t object allocated with
...
...
This diff is collapsed.
Click to expand it.
src/srun/env.c
+
1
−
1
View file @
a5d8c390
...
@@ -37,7 +37,7 @@ setenvf(const char *fmt, ...)
...
@@ -37,7 +37,7 @@ setenvf(const char *fmt, ...)
* Return the number of elements in the environment `env'
* Return the number of elements in the environment `env'
*/
*/
int
int
envcount
(
const
char
**
env
)
envcount
(
char
**
env
)
{
{
int
envc
=
0
;
int
envc
=
0
;
while
(
env
[
envc
]
!=
NULL
)
while
(
env
[
envc
]
!=
NULL
)
...
...
This diff is collapsed.
Click to expand it.
src/srun/launch.c
+
0
−
5
View file @
a5d8c390
...
@@ -254,11 +254,6 @@ static int _wait_on_active(thd_t *thd, job_t *job)
...
@@ -254,11 +254,6 @@ static int _wait_on_active(thd_t *thd, job_t *job)
return
rc
;
return
rc
;
}
}
static
void
_alrm_handler
(
int
signo
)
{
return
;
}
/* _p_launch - parallel (multi-threaded) task launcher */
/* _p_launch - parallel (multi-threaded) task launcher */
static
void
_p_launch
(
slurm_msg_t
*
req
,
job_t
*
job
)
static
void
_p_launch
(
slurm_msg_t
*
req
,
job_t
*
job
)
{
{
...
...
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