libmetal
sys.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018, Pinecone Inc. and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /*
8  * @file nuttx/sys.h
9  * @brief NuttX system primitives for libmetal.
10  */
11 
12 #ifndef __METAL_SYS__H__
13 #error "Include metal/sys.h instead of metal/nuttx/sys.h"
14 #endif
15 
16 #ifndef __METAL_NUTTX_SYS__H__
17 #define __METAL_NUTTX_SYS__H__
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 #define METAL_INIT_DEFAULTS \
24 { \
25  .log_handler = (metal_log_handler)syslog, \
26  .log_level = METAL_LOG_INFO, \
27 }
28 
30 struct metal_state {
31 
34 };
35 
36 #ifdef __cplusplus
37 }
38 #endif
39 
40 #endif /* __METAL_NUTTX_SYS__H__ */
metal_state::common
struct metal_common_state common
Definition: sys.h:33
metal_common_state
Definition: sys.h:63
metal_state
Definition: sys.h:30