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
b82d36eb
"README.rst" did not exist on "a109ee706c6ef910d9d7adea4513e6b42e3e00f4"
Commit
b82d36eb
authored
11 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
Move cleanup of thread to a common function
parent
d08f0fe8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/proctrack/cray/proctrack_cray.c
+26
-18
26 additions, 18 deletions
src/plugins/proctrack/cray/proctrack_cray.c
with
26 additions
and
18 deletions
src/plugins/proctrack/cray/proctrack_cray.c
+
26
−
18
View file @
b82d36eb
...
...
@@ -169,6 +169,19 @@ static void *_create_container_thread(void *args)
return
NULL
;
}
static
void
_end_container_thread
(
void
)
{
if
(
threadid
)
{
/* This will end the thread and remove it from the container */
slurm_mutex_lock
(
&
notify_mutex
);
pthread_cond_signal
(
&
notify
);
slurm_mutex_unlock
(
&
notify_mutex
);
pthread_join
(
threadid
,
NULL
);
threadid
=
0
;
}
}
/*
* init() is called when the plugin is loaded, before any other functions
* are called. Put global initialization here.
...
...
@@ -217,6 +230,12 @@ extern int init(void)
extern
int
fini
(
void
)
{
_end_container_thread
();
/* free up some memory */
slurm_mutex_destroy
(
&
notify_mutex
);
pthread_cond_destroy
(
&
notify
);
dlclose
(
libjob_handle
);
return
SLURM_SUCCESS
;
}
...
...
@@ -248,8 +267,9 @@ extern int slurm_container_plugin_create(stepd_step_rec_t *job)
pthread_cond_wait
(
&
notify
,
&
notify_mutex
);
slurm_mutex_unlock
(
&
notify_mutex
);
debug
(
"slurm_container_plugin_create: created jid 0x%08lx"
,
job
->
cont_id
);
debug
(
"slurm_container_plugin_create: created jid "
"0x%08lx thread %d"
,
job
->
cont_id
,
threadid
);
}
else
error
(
"slurm_container_plugin_create: already have a cont_id"
);
...
...
@@ -263,28 +283,13 @@ extern int slurm_container_plugin_create(stepd_step_rec_t *job)
* (once) at this time. */
int
slurm_container_plugin_add
(
stepd_step_rec_t
*
job
,
pid_t
pid
)
{
static
bool
first
=
1
;
if
(
_job_attachpid
(
pid
,
job
->
cont_id
)
==
(
jid_t
)
-
1
)
{
error
(
"Failed to attach pid %d to job container: %m"
,
pid
);
return
SLURM_ERROR
;
}
if
(
!
first
)
return
SLURM_SUCCESS
;
first
=
0
;
/* This will end the thread and remove it from the container */
slurm_mutex_lock
(
&
notify_mutex
);
pthread_cond_signal
(
&
notify
);
slurm_mutex_unlock
(
&
notify_mutex
);
pthread_join
(
threadid
,
NULL
);
/* free up some memory */
slurm_mutex_destroy
(
&
notify_mutex
);
pthread_cond_destroy
(
&
notify
);
_end_container_thread
();
return
SLURM_SUCCESS
;
}
...
...
@@ -300,6 +305,9 @@ int slurm_container_plugin_signal(uint64_t id, int sig)
int
slurm_container_plugin_destroy
(
uint64_t
id
)
{
int
status
;
debug
(
"destroying 0x%08lx %d"
,
id
,
threadid
);
_job_waitjid
((
jid_t
)
id
,
&
status
,
0
);
/* Assume any error means job doesn't exist. Therefore,
* return SUCCESS to slurmd so it doesn't retry continuously
...
...
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