Merging upstream version 3.5.5 (Closes: #1098233).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
c86ae7dcba
commit
6af28b7e8e
144 changed files with 43534 additions and 11497 deletions
|
@ -3,7 +3,7 @@
|
|||
* @author Michal Vasko <mvasko@cesnet.cz>
|
||||
* @brief compatibility functions header
|
||||
*
|
||||
* Copyright (c) 2021 CESNET, z.s.p.o.
|
||||
* Copyright (c) 2021 - 2023 CESNET, z.s.p.o.
|
||||
*
|
||||
* This source code is licensed under BSD 3-Clause License (the "License").
|
||||
* You may not use this file except in compliance with the License.
|
||||
|
@ -15,12 +15,22 @@
|
|||
#ifndef _COMPAT_H_
|
||||
#define _COMPAT_H_
|
||||
|
||||
#define _GNU_SOURCE /* pthread_rwlock_t */
|
||||
|
||||
#cmakedefine HAVE_CRYPT_H
|
||||
|
||||
#ifdef HAVE_CRYPT_H
|
||||
# include <crypt.h>
|
||||
#endif
|
||||
|
||||
#include <alloca.h>
|
||||
#include <limits.h>
|
||||
#include <pthread.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifndef __WORDSIZE
|
||||
# if defined __x86_64__ && !defined __ILP32__
|
||||
|
@ -48,6 +58,15 @@
|
|||
# define _PACKED
|
||||
#endif
|
||||
|
||||
#define COMPAT_CLOCK_ID @COMPAT_CLOCK_ID@
|
||||
#cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK
|
||||
#cmakedefine HAVE_PTHREAD_MUTEX_CLOCKLOCK
|
||||
#cmakedefine HAVE_PTHREAD_RWLOCK_TIMEDRDLOCK
|
||||
#cmakedefine HAVE_PTHREAD_RWLOCK_CLOCKRDLOCK
|
||||
#cmakedefine HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
|
||||
#cmakedefine HAVE_PTHREAD_RWLOCK_CLOCKWRLOCK
|
||||
#cmakedefine HAVE_PTHREAD_COND_CLOCKWAIT
|
||||
|
||||
#cmakedefine HAVE_VDPRINTF
|
||||
#cmakedefine HAVE_ASPRINTF
|
||||
#cmakedefine HAVE_VASPRINTF
|
||||
|
@ -57,7 +76,8 @@
|
|||
#cmakedefine HAVE_STRDUPA
|
||||
#cmakedefine HAVE_STRCHRNUL
|
||||
#cmakedefine HAVE_GET_CURRENT_DIR_NAME
|
||||
#cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK
|
||||
#cmakedefine HAVE_CRYPT_R
|
||||
#cmakedefine HAVE_TIMEGM
|
||||
|
||||
#ifndef bswap64
|
||||
#define bswap64(val) \
|
||||
|
@ -87,6 +107,10 @@
|
|||
|
||||
# define ATOMIC_T atomic_uint_fast32_t
|
||||
# define ATOMIC_T_MAX UINT_FAST32_MAX
|
||||
# define ATOMIC64_T atomic_uint_fast64_t
|
||||
# define ATOMIC64_T_MAX UINT_FAST64_MAX
|
||||
|
||||
# define ATOMIC_PTR_T atomic_uintptr_t
|
||||
|
||||
# define ATOMIC_STORE_RELAXED(var, x) atomic_store_explicit(&(var), x, memory_order_relaxed)
|
||||
# define ATOMIC_LOAD_RELAXED(var) atomic_load_explicit(&(var), memory_order_relaxed)
|
||||
|
@ -94,11 +118,20 @@
|
|||
# define ATOMIC_ADD_RELAXED(var, x) atomic_fetch_add_explicit(&(var), x, memory_order_relaxed)
|
||||
# define ATOMIC_DEC_RELAXED(var) atomic_fetch_sub_explicit(&(var), 1, memory_order_relaxed)
|
||||
# define ATOMIC_SUB_RELAXED(var, x) atomic_fetch_sub_explicit(&(var), x, memory_order_relaxed)
|
||||
# define ATOMIC_COMPARE_EXCHANGE_RELAXED(var, exp, des, result) \
|
||||
result = atomic_compare_exchange_strong_explicit(&(var), &(exp), des, memory_order_relaxed, memory_order_relaxed)
|
||||
|
||||
# define ATOMIC_PTR_STORE_RELAXED(var, x) atomic_store_explicit(&(var), (uintptr_t)(x), memory_order_relaxed)
|
||||
# define ATOMIC_PTR_LOAD_RELAXED(var) ((void *)atomic_load_explicit(&(var), memory_order_relaxed))
|
||||
#else
|
||||
# include <stdint.h>
|
||||
|
||||
# define ATOMIC_T uint32_t
|
||||
# define ATOMIC_T_MAX UINT32_MAX
|
||||
# define ATOMIC64_T uint64_t
|
||||
# define ATOMIC64_T_MAX UINT64_MAX
|
||||
|
||||
# define ATOMIC_PTR_T void *
|
||||
|
||||
# define ATOMIC_STORE_RELAXED(var, x) ((var) = (x))
|
||||
# define ATOMIC_LOAD_RELAXED(var) (var)
|
||||
|
@ -106,6 +139,35 @@
|
|||
# define ATOMIC_ADD_RELAXED(var, x) __sync_fetch_and_add(&(var), x)
|
||||
# define ATOMIC_DEC_RELAXED(var) __sync_fetch_and_sub(&(var), 1)
|
||||
# define ATOMIC_SUB_RELAXED(var, x) __sync_fetch_and_sub(&(var), x)
|
||||
# define ATOMIC_COMPARE_EXCHANGE_RELAXED(var, exp, des, result) \
|
||||
{ \
|
||||
ATOMIC_T __old = __sync_val_compare_and_swap(&(var), exp, des); \
|
||||
result = ATOMIC_LOAD_RELAXED(__old) == ATOMIC_LOAD_RELAXED(exp) ? 1 : 0; \
|
||||
ATOMIC_STORE_RELAXED(exp, ATOMIC_LOAD_RELAXED(__old)); \
|
||||
}
|
||||
|
||||
# define ATOMIC_PTR_STORE_RELAXED(var, x) ((var) = (x))
|
||||
# define ATOMIC_PTR_LOAD_RELAXED(var) (var)
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_TIMEDLOCK
|
||||
int pthread_mutex_timedlock(pthread_mutex_t *mutex, const struct timespec *abstime);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_CLOCKLOCK
|
||||
int pthread_mutex_clocklock(pthread_mutex_t *mutex, clockid_t clockid, const struct timespec *abstime);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_RWLOCK_CLOCKRDLOCK
|
||||
int pthread_rwlock_clockrdlock(pthread_rwlock_t *rwlock, clockid_t clockid, const struct timespec *abstime);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_RWLOCK_CLOCKWRLOCK
|
||||
int pthread_rwlock_clockwrlock(pthread_rwlock_t *rwlock, clockid_t clockid, const struct timespec *abstime);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_COND_CLOCKWAIT
|
||||
int pthread_cond_clockwait(pthread_cond_t *cond, pthread_mutex_t *mutex, clockid_t clockid, const struct timespec *abstime);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_VDPRINTF
|
||||
|
@ -151,8 +213,18 @@ char *strchrnul(const char *s, int c);
|
|||
char *get_current_dir_name(void);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_TIMEDLOCK
|
||||
int pthread_mutex_timedlock(pthread_mutex_t *mutex, const struct timespec *abstime);
|
||||
#ifndef HAVE_CRYPT_R
|
||||
|
||||
/* unused anyway */
|
||||
struct crypt_data {
|
||||
char a;
|
||||
};
|
||||
|
||||
char *crypt_r(const char *phrase, const char *setting, struct crypt_data *data);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_TIMEGM
|
||||
time_t timegm(struct tm *tm);
|
||||
#endif
|
||||
|
||||
#endif /* _COMPAT_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue