diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-12 14:03:32 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-12 14:03:32 -0500 |
| commit | 29d768609375a5c9e01750a4be691b7b1c9434b5 (patch) | |
| tree | c6ed701ad69223fa1eef9425254a64c0ba86b160 /src/thread_pool.cpp | |
| parent | ba250cc496b2e617823ff8111ef463b6adea27f4 (diff) | |
use specific types for handle indexes consistently
Diffstat (limited to 'src/thread_pool.cpp')
| -rw-r--r-- | src/thread_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread_pool.cpp b/src/thread_pool.cpp index 48338e5..3af2273 100644 --- a/src/thread_pool.cpp +++ b/src/thread_pool.cpp @@ -16,7 +16,7 @@ struct ThreadPool { MemBucket *bkt = nullptr; }; -const uint32_t MAX_THREADS_PER_BUCKET = 8; +const PkeHandleItemIndex_T MAX_THREADS_PER_BUCKET = 8; struct ThreadBucket { ThreadPool threadPools[MAX_THREADS_PER_BUCKET]; }; |
