2017-10-03 16:31:55 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2022-05-06 11:11:04 +02:00
|
|
|
#include <zephyr/arch/posix/posix_soc_if.h>
|
2017-10-03 16:31:55 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void posix_interrupt_raised(void);
|
|
|
|
void posix_boot_cpu(void);
|
|
|
|
int posix_is_cpu_running(void);
|
2020-12-10 11:49:43 +01:00
|
|
|
void posix_change_cpu_state_and_wait(bool halted);
|
2017-10-03 16:31:55 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _POSIX_POSIX_SOC_INF_CLOCK_H */
|