2017-10-03 16:31:55 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Oticon A/S
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _POSIX_SOC_INF_CLOCK_SOC_H
|
|
|
|
#define _POSIX_SOC_INF_CLOCK_SOC_H
|
|
|
|
|
2022-05-06 11:11:04 +02:00
|
|
|
#include <zephyr/toolchain.h>
|
2017-10-03 16:31:55 +02:00
|
|
|
#include "board_soc.h"
|
|
|
|
#include "posix_soc.h"
|
2023-04-13 10:39:57 +02:00
|
|
|
#include "posix_native_task.h"
|
2017-10-03 16:31:55 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-07-10 09:17:39 +02:00
|
|
|
void posix_soc_clean_up(void);
|
|
|
|
|
2017-10-03 16:31:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _POSIX_SOC_INF_CLOCK_SOC_H */
|