blob: 70d6962e10e5112f921e7e7132e7c3e438a728ef [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Ben Cheng655a7c02013-10-16 16:09:24 -07007#ifndef _UAPI__LINUX_UIO_H
8#define _UAPI__LINUX_UIO_H
9#include <linux/compiler.h>
10#include <linux/types.h>
Tao Baod7db5942015-01-28 10:07:51 -080011struct iovec {
Elliott Hughes0f0c18f2023-03-29 15:53:31 -070012 void * iov_base;
Tao Baod7db5942015-01-28 10:07:51 -080013 __kernel_size_t iov_len;
Ben Cheng655a7c02013-10-16 16:09:24 -070014};
15#define UIO_FASTIOV 8
16#define UIO_MAXIOV 1024
Nick Kralevicha67e4de2013-01-14 11:28:26 -080017#endif