aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarat Dukhan <maratek@gmail.com>2015-08-25 11:24:08 -0400
committerMarat Dukhan <maratek@gmail.com>2015-08-25 11:24:08 -0400
commit7b1f6e5c68e48c3b328b7f6536e2b37bcdb37e6a (patch)
treed0f3209b0a3c3c71abe65875b5abdebac81e82f7 /include
parent3a45d9a93ff1521eb2ef5f49c5135dcd8abf99d3 (diff)
downloadpthreadpool-7b1f6e5c68e48c3b328b7f6536e2b37bcdb37e6a.tar.gz
Return size_t in pthreadpool_get_threads_count
Diffstat (limited to 'include')
-rw-r--r--include/pthreadpool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pthreadpool.h b/include/pthreadpool.h
index dc0847d..8997d93 100644
--- a/include/pthreadpool.h
+++ b/include/pthreadpool.h
@@ -32,7 +32,7 @@ pthreadpool_t pthreadpool_create(size_t threads_count);
*
* @returns The number of threads in the thread pool.
*/
-uint32_t pthreadpool_get_threads_count(pthreadpool_t threadpool);
+size_t pthreadpool_get_threads_count(pthreadpool_t threadpool);
/**