mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 00:17:25 +00:00
Move the SoC outside of the architecture tree and put them at the same level as boards and architectures allowing both SoCs and boards to be maintained outside the tree. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
25 lines
392 B
C
25 lines
392 B
C
/*
|
|
* Copyright (c) 2017 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _POSIX_POSIX_SOC_INF_CLOCK_H
|
|
#define _POSIX_POSIX_SOC_INF_CLOCK_H
|
|
|
|
#include "posix_soc_if.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void posix_interrupt_raised(void);
|
|
void posix_boot_cpu(void);
|
|
int posix_is_cpu_running(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _POSIX_POSIX_SOC_INF_CLOCK_H */
|