1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* Copyright (C) 1996, 1997, 2008 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#if !defined _SYS_UIO_H && !defined _FCNTL_H
# error "Never include <bits/uio.h> directly; use <sys/uio.h> instead."
#endif
#ifndef _BITS_UIO_H
#define _BITS_UIO_H 1
#include <bits/types.h>
/* Maximum number of iovec's that can be processed in a single call. */
#define UIO_MAXIOV 16
/* `struct iovec' -- Structure describing a section of memory. */
struct iovec {
/* Starting address. */
__ptr_t iov_base;
/* Length in bytes. */
size_t iov_len;
};
typedef struct iovec iovec_t;
#ifdef __USE_MISC
typedef enum uio_seg
{
UIO_USERSPACE,
UIO_SYSSPACE,
UIO_USERISPACE
} uio_seg_t;
typedef struct uio
{
iovec_t *uio_iov;
int uio_iovcnt;
lloff_t _uio_offset;
uio_seg_t uio_segflg;
__uint16_t uio_fmode;
__uint16_t uio_extflg;
lloff_t _uio_limit;
ssize_t uio_resid;
} uio_t;
typedef struct uioa_page_s
{
int uioa_pfncnt;
void **uioa_ppp;
caddr_t uioa_base;
size_t uioa_len;
} uioa_page_t;
#define UIOA_IOV_MAX 16
typedef struct uioa_s
{
iovec_t *uio_iov;
int uio_iovcnt;
lloff_t _uio_offset;
uio_seg_t uio_segflg;
uint16_t uio_fmode;
uint16_t uio_extflg;
lloff_t _uio_limit;
ssize_t uio_resid;
uint32_t uioa_state;
uioa_page_t *uioa_lcur;
void **uioa_lppp;
void *uioa_hwst[4];
uioa_page_t uioa_locked[UIOA_IOV_MAX];
} uioa_t;
#endif
#endif /* _SYS_UIO_H */
|