Skip to content

Commit 7a1a713

Browse files
author
Christopher Crouzet
committed
Add a timer library
1 parent 89ad902 commit 7a1a713

File tree

6 files changed

+634
-0
lines changed

6 files changed

+634
-0
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ endmacro()
4444

4545
zr_add_library(allocator)
4646
zr_add_library(logger)
47+
zr_add_library(timer)
4748

4849
# ------------------------------------------------------------------------------
4950

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ namely fixed-width integer types and variadic macros.
2626
|---------|-------------|----------------|-----------|
2727
**[allocator.h](include/zero/allocator.h)** | Aligned and non-aligned wrappers of malloc/realloc/free | 0.1.0 | [changelog](changelogs/allocator.md)
2828
**[logger.h](include/zero/logger.h)** | Simple logger with different log levels and colouring | 0.1.0 | [changelog](changelogs/logger.md)
29+
**[timer.h](include/zero/timer.h)** | High-resolution real time clock and CPU (user/system) clocks | 0.1.0 | [changelog](changelogs/timer.md)
2930

3031

3132
## FAQ

changelogs/timer.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Changelog For `zero/timer.h`
2+
============================
3+
4+
Version numbers comply with the [Sementic Versioning Specification (SemVer)].
5+
6+
7+
## v0.1.0 (2018-03-13)
8+
9+
* Initial release.
10+
11+
12+
[Sementic Versioning Specification (SemVer)]: https://semver.org

0 commit comments

Comments
 (0)