This commit is contained in:
vanhauser-thc
2024-05-31 18:32:31 +02:00
parent a3125c38f4
commit 9419e39fdf
5 changed files with 14 additions and 4 deletions

View File

@ -999,7 +999,7 @@ inline u64 get_cur_time(void) {
struct timespec ts;
int rc = clock_gettime(CLOCK_MONOTONIC_COARSE, &ts);
if (rc == -1) {
if (unlikely(rc == -1)) {
PFATAL("Failed to obtain timestamp (errno = %i: %s)\n", errno,
strerror(errno));
@ -1012,11 +1012,11 @@ inline u64 get_cur_time(void) {
/* Get unix time in microseconds */
u64 get_cur_time_us(void) {
inline u64 get_cur_time_us(void) {
struct timespec ts;
int rc = clock_gettime(CLOCK_MONOTONIC_COARSE, &ts);
if (rc == -1) {
if (unlikely(rc == -1)) {
PFATAL("Failed to obtain timestamp (errno = %i: %s)\n", errno,
strerror(errno));