EM-ODP
3.8.0-1
Event Machine on ODP
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
Globals
All
a
c
d
e
h
i
l
o
p
q
r
s
u
Functions
a
c
d
e
h
i
o
p
q
s
Variables
Typedefs
e
i
l
o
q
Enumerations
Enumerator
e
i
Macros
e
i
p
r
s
u
Examples
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
em_cli_types.h
Go to the documentation of this file.
1
/* Copyright (c) 2021, Nokia
2
* All rights reserved.
3
*
4
* SPDX-License-Identifier: BSD-3-Clause
5
*/
6
7
/**
8
* @file
9
* EM Command Line Interface support
10
*/
11
12
#ifndef EM_CLI_TYPES_H_
13
#define EM_CLI_TYPES_H_
14
15
#if EM_CLI
16
17
typedef
struct
{
18
/** Handle for this shared memory */
19
odp_shm_t this_shm;
20
/** ODP control thread for running EM-CLI server */
21
odph_thread_t em_cli_thread;
22
} em_cli_shm_t;
23
24
#endif
/* EM_CLI */
25
26
#endif
/* EM_CLI_TYPES_H_ */