ovni/src/include/compat.h

53 lines
849 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
#ifndef COMPAT_H
#define COMPAT_H
#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)
#include <sys/syscall.h>
#include <unistd.h>
static inline 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
/* 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;
}
#endif /* COMPAT_H */