ovni/src/compat.c

52 lines
802 B
C
Raw Normal View History

2023-02-27 13:40:20 +01:00
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
2022-09-19 12:39:02 +02:00
* SPDX-License-Identifier: MIT */
2022-01-11 15:47:17 +01:00
#define _GNU_SOURCE /* Only here */
2022-01-11 15:47:17 +01:00
#include "compat.h"
#include <errno.h>
2023-03-22 17:25:45 +01:00
#include <features.h>
#include <unistd.h>
2022-01-11 15:47:17 +01:00
/* Define gettid for older glibc versions (below 2.30) */
2022-01-11 19:08:37 +01:00
#if defined(__GLIBC__)
#if !__GLIBC_PREREQ(2, 30)
#include <sys/syscall.h>
static pid_t
gettid(void)
2022-01-11 15:47:17 +01:00
{
return (pid_t) syscall(SYS_gettid);
2022-01-11 15:47:17 +01:00
}
2022-01-11 19:08:37 +01:00
#endif /* !__GLIBC_PREREQ(2, 30) */
#endif /* defined(__GLIBC__) */
2022-01-11 15:47:17 +01:00
pid_t
get_tid(void)
{
return gettid();
}
int
sleep_us(long usec)
{
struct timespec ts;
int res;
if (usec < 0) {
errno = EINVAL;
return -1;
}
ts.tv_sec = usec / 1000000L;
ts.tv_nsec = (usec % 1000000L) * 1000L;
do {
res = nanosleep(&ts, &ts);
} while (res && errno == EINTR);
return res;
}