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
|
|
|
|
|
|
|
#ifndef COMPAT_H
|
|
|
|
#define COMPAT_H
|
|
|
|
|
2023-03-22 16:01:55 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
pid_t gettid(void);
|
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)
|
2023-03-22 16:01:55 +01:00
|
|
|
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2022-09-29 15:34:44 +02:00
|
|
|
static inline pid_t
|
|
|
|
gettid(void)
|
2022-01-11 15:47:17 +01:00
|
|
|
{
|
2022-09-29 15:34:44 +02:00
|
|
|
return (pid_t) syscall(SYS_gettid);
|
2022-01-11 15:47:17 +01:00
|
|
|
}
|
2023-03-22 16:01:55 +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
|
|
|
|
2023-03-22 16:01:55 +01:00
|
|
|
/* usleep is deprecated */
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
static inline 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;
|
|
|
|
}
|
|
|
|
|
2022-12-16 11:56:43 +01:00
|
|
|
#endif /* COMPAT_H */
|