Closed lpil closed 1 year ago
I definitely need to do more research on that. Thanks for the tips!
I made some changes and I think we can close this issue. And with #3 also probably closed, I'm ready for a new version so that we can move on to other issues. Let me know if I misunderstood something and the code still needs to change regarding this issue. Thanks for the feedback!
Fab!
Hello!
monotonic_now/1
is implemented usingos:perf_counter/1
, which isn't monotonic.You may want to use
erlang:system_info(os_monotonic_time_source).
orerlang:monotonic_time/0
depending on what you want. More info there: https://www.erlang.org/doc/apps/erts/time_correction.htmlThanks, Louis