From 6b0f4d3a18b7830f431c528b2dbc37e7abc27ecb Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 3 Aug 2023 17:03:49 -0400 Subject: [PATCH] Add monotonic mention to system::getTime(). --- include/system.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/system.hpp b/include/system.hpp index a5d0d5f4..47a6231e 100644 --- a/include/system.hpp +++ b/include/system.hpp @@ -167,7 +167,7 @@ void setThreadName(const std::string& name); /** Returns the caller's human-readable stack trace with "\n"-separated lines. */ std::string getStackTrace(); /** Returns the number of seconds since application launch. -Gives the most precise (fine-grained) time differences available on the OS for benchmarking purposes, while being fast to compute. +Gives the most precise (fine-grained) monotonic (non-decreasing) time differences available on the OS for benchmarking purposes, while being fast to compute. */ double getTime(); /** Returns time since 1970-01-01 00:00:00 UTC in seconds.