Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
3.5.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2017 Linaro Limited
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
#ifndef ZEPHYR_INCLUDE_ZEPHYR_TYPES_H_
8
#define ZEPHYR_INCLUDE_ZEPHYR_TYPES_H_
9
10
#include <stddef.h>
11
#include <
stdint.h
>
12
13
#ifdef __cplusplus
14
extern
"C"
{
15
#endif
16
17
/*
18
* A type with strong alignment requirements, similar to C11 max_align_t. It can
19
* be used to force alignment of data structures allocated on the stack or as
20
* return * type for heap allocators.
21
*/
22
typedef
union
{
23
long
long
thelonglong;
24
long
double
thelongdouble;
25
uintmax_t
theuintmax_t;
26
size_t
thesize_t;
27
uintptr_t
theuintptr_t;
28
void
*thepvoid;
29
void (*thepfunc)(void);
30
} z_max_align_t;
31
32
#ifdef __cplusplus
33
/* Zephyr requires an int main(void) signature with C linkage for the application main if present */
34
extern
int
main(
void
);
35
#endif
36
37
#ifdef __cplusplus
38
}
39
#endif
40
41
#endif
/* ZEPHYR_INCLUDE_ZEPHYR_TYPES_H_ */
stdint.h
uintptr_t
__UINTPTR_TYPE__ uintptr_t
Definition:
stdint.h:105
uintmax_t
__UINT64_TYPE__ uintmax_t
Definition:
stdint.h:92
zephyr
types.h
Generated on Fri Oct 20 2023 10:27:12 for Zephyr API Documentation by
1.9.6