1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Cover more kernel time.

This commit is contained in:
winlin 2019-05-15 08:57:46 +08:00
parent f7994b85eb
commit 8b595c4cdf
3 changed files with 39 additions and 1 deletions

View file

@ -122,11 +122,14 @@ srs_utime_t srs_get_system_startup_time()
return _srs_system_time_startup_time;
}
// For utest to mock it.
_srs_gettimeofday_t _srs_gettimeofday = ::gettimeofday;
srs_utime_t srs_update_system_time()
{
timeval now;
if (gettimeofday(&now, NULL) < 0) {
if (_srs_gettimeofday(&now, NULL) < 0) {
srs_warn("gettimeofday failed, ignore");
return -1;
}