diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-06-14 16:26:53 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-06-14 16:28:39 -0600 |
commit | 8c9a97f4cf9f8d55d48981f3d7170f27ce853ce5 (patch) | |
tree | 85fbe40ce7b6c8e3d2c10b872737a4cdc2f81727 /libdimension/dimension/timer.h | |
parent | 9ed4a01ac4305baff9e5ee1484691e78def105a1 (diff) | |
download | dimension-8c9a97f4cf9f8d55d48981f3d7170f27ce853ce5.tar.xz |
Add Timers to Python module.
Diffstat (limited to 'libdimension/dimension/timer.h')
-rw-r--r-- | libdimension/dimension/timer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdimension/dimension/timer.h b/libdimension/dimension/timer.h index 0a1fde9..bd72a90 100644 --- a/libdimension/dimension/timer.h +++ b/libdimension/dimension/timer.h @@ -28,6 +28,8 @@ typedef struct dmnsn_timer { double real; /**< Wall-clock time. */ double user; /**< Time spent executing. */ double system; /**< Time spent waiting for the system. */ + + dmnsn_refcount refcount; /**< @internal Reference count. */ } dmnsn_timer; /** A standard format string for timers. */ |