libmetal
sys.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, Linaro Limited. and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /*
8  * @file zephyr/sys.h
9  * @brief Zephyr system primitives for libmetal.
10  */
11 
12 #ifndef __METAL_SYS__H__
13 #error "Include metal/sys.h instead of metal/zephyr/sys.h"
14 #endif
15 
16 #ifndef __METAL_ZEPHYR_SYS__H__
17 #define __METAL_ZEPHYR_SYS__H__
18 
19 #include <stdlib.h>
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 #define METAL_INIT_DEFAULTS \
26 { \
27  .log_handler = metal_zephyr_log_handler, \
28  .log_level = METAL_LOG_INFO, \
29 }
30 
31 #ifndef METAL_MAX_DEVICE_REGIONS
32 #define METAL_MAX_DEVICE_REGIONS 1
33 #endif
34 
36 struct metal_state {
37 
40 };
41 
42 #ifdef __cplusplus
43 }
44 #endif
45 
46 #endif /* __METAL_ZEPHYR_SYS__H__ */
Definition: sys.h:63
Definition: sys.h:30
struct metal_common_state common
Definition: sys.h:33