mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 12:51:56 +00:00
Related to #17997, for the POSIX arch: * Remove some unnecessary extern "C" and ifdef blocks * Move an include out of one of these blocks * Add a missing extern "C" block Background: Declarations that use C linkage should be placed within extern "C" so the language linkage is correct when the header is included by a C++ compiler. Similarly #include directives should be outside the extern "C" to ensure the language-specific default linkage is applied to any declarations provided by the included header. See: https://en.cppreference.com/w/cpp/language/language_linkage Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
33 lines
715 B
C
33 lines
715 B
C
/*
|
|
* Copyright (c) 2015, Wind River Systems, Inc.
|
|
* Copyright (c) 2017, Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*
|
|
* POSIX ARCH specific public inline "assembler" functions and macros
|
|
*/
|
|
|
|
/* Either public functions or macros or invoked by public functions */
|
|
|
|
#ifndef ZEPHYR_INCLUDE_ARCH_POSIX_ASM_INLINE_GCC_H_
|
|
#define ZEPHYR_INCLUDE_ARCH_POSIX_ASM_INLINE_GCC_H_
|
|
|
|
/*
|
|
* The file must not be included directly
|
|
* Include kernel.h instead
|
|
*/
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <toolchain/common.h>
|
|
#include <zephyr/types.h>
|
|
#include <arch/common/sys_io.h>
|
|
#include <arch/common/ffs.h>
|
|
#include "posix_soc_if.h"
|
|
|
|
#endif /* _ASMLANGUAGE */
|
|
|
|
#endif /* ZEPHYR_INCLUDE_ARCH_POSIX_ASM_INLINE_GCC_H_ */
|