From 0acc94cb3fbefd872c4e579a9ad896030c3f1e35 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Fri, 29 Nov 2024 14:39:46 +0100 Subject: [PATCH] Add README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9dad315 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# libsctimer — Set (possibly reapeating) alarms + +Handle any alarms in a function inside its own thread. + +This library is a lightweight C++-wrapper around POSIX timers, and as such only +works on Linux, because, currently, the POSIX timer APIs have not been +implemented on macOS or OpenBSD. + +## Build + +`make` + +after building and installing the dependency: + +- [libscerror](https://git.bobpolis.com/bob/libscerror/) + +## Install + +`sudo make install` + +or, on OpenBSD: + +`doas gmake install` + +## Documentation + +Not yet available.