Zephyr Project API
4.1.0
A Scalable Open Source RTOS
Zephyr Project API 4.1.0
Toggle main menu visibility
Main Page
Related Pages
Topics
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
q
r
s
t
u
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
See also (go back to)
Bridle
Bridle API
Zephyr Project
Zephyr Project API
Kconfig Reference
Devicetree Bindings
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
aio.h
Go to the documentation of this file.
1
/*
2
* Copyright 2024 Tenstorrent AI ULC
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
#ifndef ZEPHYR_INCLUDE_ZEPHYR_POSIX_AIO_H_
8
#define ZEPHYR_INCLUDE_ZEPHYR_POSIX_AIO_H_
9
10
#include <
signal.h
>
11
#include <
sys/types.h
>
12
#include <
time.h
>
13
14
#ifdef __cplusplus
15
extern
"C"
{
16
#endif
17
18
struct
aiocb
{
19
int
aio_fildes
;
20
off_t
aio_offset
;
21
volatile
void
*
aio_buf
;
22
size_t
aio_nbytes
;
23
int
aio_reqprio
;
24
struct
sigevent
aio_sigevent
;
25
int
aio_lio_opcode
;
26
};
18
struct
aiocb
{
…
};
27
28
#if _POSIX_C_SOURCE >= 200112L
29
30
int
aio_cancel(
int
fildes,
struct
aiocb
*aiocbp);
31
int
aio_error(
const
struct
aiocb
*aiocbp);
32
int
aio_fsync(
int
filedes,
struct
aiocb
*aiocbp);
33
int
aio_read(
struct
aiocb
*aiocbp);
34
ssize_t
aio_return(
struct
aiocb
*aiocbp);
35
int
aio_suspend(
const
struct
aiocb
*
const
list[],
int
nent,
const
struct
timespec
*timeout);
36
int
aio_write(
struct
aiocb
*aiocbp);
37
int
lio_listio(
int
mode,
struct
aiocb
*
const
ZRESTRICT
list[],
int
nent,
38
struct
sigevent
*
ZRESTRICT
sig);
39
40
#endif
/* _POSIX_C_SOURCE >= 200112L */
41
42
#ifdef __cplusplus
43
}
44
#endif
45
46
#endif
/* ZEPHYR_INCLUDE_ZEPHYR_POSIX_AIO_H_ */
ZRESTRICT
#define ZRESTRICT
Definition
common.h:36
signal.h
types.h
ssize_t
__SIZE_TYPE__ ssize_t
Definition
types.h:28
off_t
__INTPTR_TYPE__ off_t
Definition
types.h:36
time.h
aiocb
Definition
aio.h:18
aiocb::aio_offset
off_t aio_offset
Definition
aio.h:20
aiocb::aio_buf
volatile void * aio_buf
Definition
aio.h:21
aiocb::aio_nbytes
size_t aio_nbytes
Definition
aio.h:22
aiocb::aio_sigevent
struct sigevent aio_sigevent
Definition
aio.h:24
aiocb::aio_reqprio
int aio_reqprio
Definition
aio.h:23
aiocb::aio_lio_opcode
int aio_lio_opcode
Definition
aio.h:25
aiocb::aio_fildes
int aio_fildes
Definition
aio.h:19
sigevent
Definition
signal.h:98
timespec
Definition
_timespec.h:22
include
zephyr
posix
aio.h
Generated on Sun Mar 30 2025 16:03:57 for Zephyr Project API by
1.9.8