Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/threadpool-atomics.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static inline void pthreadpool_thread_join(
* i.e. two or more atomic variables sharing the same cache line will block
* each other during atomic operations.
*/
typedef atomic_uint_fast32_t PTHREADPOOL_CACHELINE_ALIGNED
typedef atomic_uint_least32_t PTHREADPOOL_CACHELINE_ALIGNED
pthreadpool_atomic_uint32_t;
typedef atomic_int_least32_t PTHREADPOOL_CACHELINE_ALIGNED
pthreadpool_atomic_int32_t;
Expand Down