1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-17 18:43:50 +01:00
RIOT/cpu/esp32/include/sys/features.h
2025-09-12 11:25:41 +02:00

53 lines
1.3 KiB
C

/*
* SPDX-FileCopyrightText: 2022 Gunar Schorcht
* SPDX-License-Identifier: LGPL-2.1-only
*/
#pragma once
/**
* @ingroup cpu_esp32
* @{
*
* @file
* @brief Wrapper for sys/features.h
*
* @author Gunar Schorcht <gunar@schorcht.net>
*
* This file is a wrapper for sys/features.h to revert default definitions that
* lead to compilation problems with newer GCC/newlib versions, see below.
*/
#ifndef DOXYGEN
#ifdef __cplusplus
extern "C" {
#endif
#include_next <sys/features.h>
/*
* When using a GCC version with POSIX thread support enabled, as is the
* case with Espressif's precompiled toolchains, the `_POSIX_THREAD`
* definition has to be reverted to prevent the inclusion of newlib's
* POXIS header files in system headers to avoid compilation errors.
* The reason is that RIOT uses its own `pthread` implementation, but
* its type declarations are not fully compatible with those in
* `sys/_pthreadtypes.h`.
*/
#undef _POSIX_THREADS
/*
* To avoid type conflicts between the `pthread_rwlockattr_t` definition
* in RIOT's `pthread` implementation and newlibc's `sys/_pthreadtypes.h`,
* the macro `_POSIX_READER_WRITER_LOCKS` must be undefined.
*/
#undef _POSIX_READER_WRITER_LOCKS
#ifdef __cplusplus
}
#endif
#endif /* DOXYGEN */
/** @} */