Closes #124694. This patch adds the `sys/uio/readv` function. ref: https://pubs.opengroup.org/onlinepubs/009696699/functions/readv.html
26 lines
460 B
YAML
26 lines
460 B
YAML
header: sys/uio.h
|
|
header_template: uio.h.def
|
|
macros: []
|
|
types:
|
|
- type_name: struct_iovec
|
|
- type_name: ssize_t
|
|
enums: []
|
|
objects: []
|
|
functions:
|
|
- name: writev
|
|
standards:
|
|
- POSIX
|
|
return_type: ssize_t
|
|
arguments:
|
|
- type: int
|
|
- type: const struct iovec *
|
|
- type: int
|
|
- name: readv
|
|
standards:
|
|
- POSIX
|
|
return_type: ssize_t
|
|
arguments:
|
|
- type: int
|
|
- type: const struct iovec *
|
|
- type: int
|