diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-08 11:10:35 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-08 11:10:35 -0800 |
| commit | a82a073043c1475b46e1e6963c7078df24399745 (patch) | |
| tree | af903573e80c41401fd73e7a3b15b003b56aa7bc /slstatus/slstatus-1.1/components/entropy.c | |
| parent | 78f1d733b5a24bba9cd36c0fde335e14407d12f7 (diff) | |
slstatus patch to git
Diffstat (limited to 'slstatus/slstatus-1.1/components/entropy.c')
| -rw-r--r-- | slstatus/slstatus-1.1/components/entropy.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/slstatus/slstatus-1.1/components/entropy.c b/slstatus/slstatus-1.1/components/entropy.c new file mode 100644 index 0000000..65010b0 --- /dev/null +++ b/slstatus/slstatus-1.1/components/entropy.c @@ -0,0 +1,29 @@ +/* See LICENSE file for copyright and license details. */ +#include "../slstatus.h" +#if defined(__linux__) + #include <stdint.h> + #include <stdio.h> + + #include "../util.h" + + #define ENTROPY_AVAIL "/proc/sys/kernel/random/entropy_avail" + + const char * + entropy(const char *unused) + { + uintmax_t num; + + if (pscanf(ENTROPY_AVAIL, "%ju", &num) != 1) + return NULL; + + return bprintf("%ju", num); + } +#elif defined(__OpenBSD__) | defined(__FreeBSD__) + const char * + entropy(const char *unused) + { + // https://www.unicode.org/charts/PDF/U2200.pdf + /* Unicode Character 'INFINITY' (U+221E) */ + return "\u221E"; + } +#endif |
