Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sds
margo
Commits
7a5a0d46
Commit
7a5a0d46
authored
Oct 31, 2016
by
Jonathan Jenkins
Browse files
clean up after thread_sleep
parent
c839222b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/margo.c
View file @
7a5a0d46
...
...
@@ -748,6 +748,10 @@ void margo_thread_sleep(
ABT_cond_wait
(
sleep_cb_dat
.
cond
,
sleep_cb_dat
.
mutex
);
ABT_mutex_unlock
(
sleep_cb_dat
.
mutex
);
/* clean up */
ABT_mutex_free
(
&
sleep_cb_dat
.
mutex
);
ABT_cond_free
(
&
sleep_cb_dat
.
cond
);
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment