Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/threadpool-atomics.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static inline void pthreadpool_cond_broadcast(pthreadpool_cond_t* cond) {
cnd_broadcast(cond);
}
static inline void pthreadpool_thread_create(pthreadpool_thread_t* thread,
int(fun)(void*), void* arg) {
void*(fun)(void*), void* arg) {
thrd_create(thread, fun, arg);
}
static inline void pthreadpool_thread_join(pthreadpool_thread_t thread,
Expand Down
Loading