diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-01 16:55:42 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-01 16:55:42 +0300 |
| commit | 9ff67d879b4695e0c9910b7276f3959c005c7b19 (patch) | |
| tree | 86b6399dcc934adba2535e16b889eee86cb27a67 /include | |
| parent | 2daea019d2869a1a65829a9883701f8e8453e2fe (diff) | |
| download | kmi-9ff67d879b4695e0c9910b7276f3959c005c7b19.tar.gz kmi-9ff67d879b4695e0c9910b7276f3959c005c7b19.zip | |
tunit_t is now uint64_t
+ Largely inconsequential, but might make more sense for 32 bit
platforms
Diffstat (limited to 'include')
| -rw-r--r-- | include/kmi/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kmi/timer.h b/include/kmi/timer.h index c1a07a2..7c16f36 100644 --- a/include/kmi/timer.h +++ b/include/kmi/timer.h @@ -25,7 +25,7 @@ typedef uint64_t ticks_t; /** * tunit_t typedef, whichever time unit we're dealing with. */ -typedef size_t tunit_t; +typedef uint64_t tunit_t; /** * Timer structure. |
