Browse Source

Add monotonic mention to system::getTime().

tags/v2.4.0
Andrew Belt 1 year ago
parent
commit
6b0f4d3a18
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      include/system.hpp

+ 1
- 1
include/system.hpp View File

@@ -167,7 +167,7 @@ void setThreadName(const std::string& name);
/** Returns the caller's human-readable stack trace with "\n"-separated lines. */ /** Returns the caller's human-readable stack trace with "\n"-separated lines. */
std::string getStackTrace(); std::string getStackTrace();
/** Returns the number of seconds since application launch. /** 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(); double getTime();
/** Returns time since 1970-01-01 00:00:00 UTC in seconds. /** Returns time since 1970-01-01 00:00:00 UTC in seconds.


Loading…
Cancel
Save