summaryrefslogtreecommitdiff
path: root/src/thread-pool.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread-pool.hpp')
-rw-r--r--src/thread-pool.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread-pool.hpp b/src/thread-pool.hpp
index aabb9ee..3afb99b 100644
--- a/src/thread-pool.hpp
+++ b/src/thread-pool.hpp
@@ -14,7 +14,7 @@ void PkeThreads_Init();
ThreadPoolHandle PkeThreads_Init (uint8_t threadCount, uint8_t maxQueueCount, struct pk_membucket *bkt = nullptr);
void PkeThreads_Reset (ThreadPoolHandle handle);
bool PkeThreads_Enqueue (ThreadPoolHandle handle, std::packaged_task<void()> *job);
-int64_t PkeThreads_GetQueueCount (ThreadPoolHandle handle);
+uint32_t PkeThreads_GetQueueCount (ThreadPoolHandle handle);
void PkeThreads_Pause (ThreadPoolHandle handle);
void PkeThreads_Resume (ThreadPoolHandle handle);
void PkeThreads_Shutdown (ThreadPoolHandle handle);