Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
f8f55372
Commit
f8f55372
authored
Jul 31, 2017
by
Peter W. Draper
Browse files
Typos
parent
d439130a
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/threadpool.c
View file @
f8f55372
...
...
@@ -327,7 +327,8 @@ void threadpool_clean(struct threadpool *tp) {
/* Release the barriers. */
if
(
pthread_barrier_destroy
(
&
tp
->
wait_barrier
)
!=
0
||
pthread_barrier_destroy
(
&
tp
->
run_barrier
)
!=
0
)
error
(
"Failed to destory threadpool barriers."
);
error
(
"Failed to destroy threadpool barriers."
);
/* Clean up memory. */
free
(
tp
->
threads
);
...
...
tests/testThreadpool.c
View file @
f8f55372
...
...
@@ -17,7 +17,7 @@
*
******************************************************************************/
include
"../config.h"
#
include
"../config.h"
// Standard includes.
#include
<stdio.h>
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment