Skip to content

Commit

Permalink
🎨 threadpools win fix again and again and again and again and again a…
Browse files Browse the repository at this point in the history
…nd again
  • Loading branch information
fennecdjay committed Sep 25, 2023
1 parent 5c3daf8 commit b9387e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/threadpool.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ANN static inline int gwt_signal(gwtcond_t *cond) {
WakeConditionVariable(*cond);
return 0;
}
ANN static inline int gwt_create(gwtthread_t *thread, gwreturn_t (*fun)(void*), void *arg) {
ANN static inline int gwt_create(gwtthread_t *thread, gwtreturn_t (*fun)(void*), void *arg) {
*thread = CreateThread(NULL, 0, fun, arg, 0, NULL);
return 0;
}
Expand Down

0 comments on commit b9387e0

Please sign in to comment.