Eduardo Arias 5e6fcbc60b Replace usage of std::ctime, which is not safe for use in multithreaded contexts
- std::ctime returns a pointer to a string that "may be shared between
  std::asctime and std::ctime, and may be overwritten on each invocation
  of any of those functions.".
  - https://en.cppreference.com/w/cpp/chrono/c/ctime
- Replaced with call to strftime to generate the same string
  representation (using the format string: %c)
- Leveraged localtime_r (which is thread-safe) to convert time_t to
  struct tm, as required by strftime.
2024-08-13 10:54:06 -07:00
..
2021-01-19 09:24:37 -03:00
2021-12-20 09:41:38 -08:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2021-01-19 09:24:37 -03:00
2023-04-11 13:47:02 -04:00
2021-01-19 09:24:37 -03:00