1 // SPDX-FileCopyrightText: 2013 Pierre-Luc St-Charles <pierre-luc.st-charles@polymtl.ca>
3 // SPDX-License-Identifier: LGPL-2.1-or-later
5 #ifndef _URCU_SYSCALL_COMPAT_H
6 #define _URCU_SYSCALL_COMPAT_H
9 * Userspace RCU library - Syscall Compatibility Header
12 #if defined(__ANDROID__) || defined(__sun__) || defined(__GNU__)
13 #include <sys/syscall.h>
14 #elif defined(__linux__) || defined(__GLIBC__)
17 #elif defined(__CYGWIN__) || defined(__APPLE__) || \
18 defined(__FreeBSD__) || defined(__DragonFly__) || \
20 /* Don't include anything on these platforms. */
23 #error "Add platform support to urcu/syscall-compat.h"
26 #endif /* _URCU_SYSCALL_COMPAT_H */
This page took 0.029967 seconds and 4 git commands to generate.