You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use zend_hrtime instead of time(NULL) since it's monotonic
`time(NULL)` isn't monotonic and can run backwards so switch to
`zend_hrtime` which uses `clock_gettime(CLOCK_MONOTONIC)` on Linux and
`QueryPerformanceCounter`on Windows.
0 commit comments