Fix pool for threading.h

This commit is contained in:
Nick Terrell
2016-12-31 19:10:47 -05:00
parent 4204e03e77
commit bb13387d7d
2 changed files with 10 additions and 10 deletions
+1
View File
@@ -39,6 +39,7 @@ typedef void (*POOL_add_function)(void *, POOL_function, void *);
/*! POOL_add() :
Add the job `function(opaque)` to the thread pool.
Possibly blocks until there is room in the queue.
Note : The function may be executed asynchronously, so `opaque` must live until the function has been completed.
*/
void POOL_add(void *ctx, POOL_function function, void *opaque);