Update thpool.h

This commit is contained in:
Johan 2015-01-17 20:23:11 +00:00
parent 0e7dc83bf6
commit 011b2688bf
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
typedef struct thpool_* threadpool;
/* =========================== FUNCTIONS ============================ */
/* =================================== API ======================================= */
/**
@ -24,8 +24,8 @@ typedef struct thpool_* threadpool;
* @example
*
* ..
* threadpool thpool; //First we declare a threadpool
* thpool = thpool_init(4); //then we initialize it to 4 threads
* threadpool thpool; //First we declare a threadpool
* thpool = thpool_init(4); //then we initialize it to 4 threads
* ..
*
* @param num_threads number of threads to be created in the threadpool