Files
clang-p2996/libc/include/sys/uio.yaml
Schrodinger ZHU Yifan 73dd730fb9 [libc] implement sys/uio/writev (#122233)
implement sys/uio/writev according to POSIX standard. This vectorized IO
API is needed by many logging libraries to achieve atomic logging
multiple strings.
2025-01-10 12:49:00 +08:00

18 lines
305 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