diff options
Diffstat (limited to 'lib/thread.h')
-rw-r--r-- | lib/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/thread.h b/lib/thread.h index 682a17b9f..eb1b107e7 100644 --- a/lib/thread.h +++ b/lib/thread.h @@ -115,8 +115,8 @@ struct thread { struct cpu_thread_history { int (*func)(struct thread *); - atomic_uint_fast32_t total_calls; - atomic_uint_fast32_t total_active; + atomic_size_t total_calls; + atomic_size_t total_active; struct time_stats { atomic_size_t total, max; } real; |