source: rtems/cpukit/libnetworking/sys/uio.h @ ee613aa

4.115
Last change on this file since ee613aa was ee613aa, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/24/11 at 09:36:14

Include <sys/cdefs.h> (Eliminate rtems/bsd/sys/cdefs.h).

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * Copyright (c) 1982, 1986, 1993, 1994
3 *      The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 *    may be used to endorse or promote products derived from this software
15 *    without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 *      @(#)uio.h       8.5 (Berkeley) 2/22/94
30 * $FreeBSD: src/sys/sys/uio.h,v 1.40 2006/11/29 19:08:45 alfred Exp $
31 */
32
33/*
34 * $Id$
35 */
36
37#ifndef _SYS_UIO_H_
38#define _SYS_UIO_H_
39
40#include <sys/cdefs.h>
41#include <sys/types.h>
42
43/*
44 *  POSIX compliant iovec definition
45 */
46struct iovec {
47  void    *iov_base;  /* pointer to data to be written */
48  size_t   iov_len;   /* length of this data block */
49};
50
51#if __BSD_VISIBLE
52enum    uio_rw { UIO_READ, UIO_WRITE };
53
54/* Segment flag values. */
55enum uio_seg {
56        UIO_USERSPACE,          /* from user data space */
57        UIO_SYSSPACE,           /* from system space */
58        UIO_NOCOPY              /* don't copy, already in object */
59};
60#endif
61
62#ifdef _KERNEL
63
64struct uio {
65        struct  iovec *uio_iov;         /* scatter/gather list */
66        int     uio_iovcnt;             /* length of scatter/gather list */
67        off_t   uio_offset;             /* offset in target object */
68        ssize_t uio_resid;              /* remaining bytes to process */
69        enum    uio_seg uio_segflg;     /* address space */
70        enum    uio_rw uio_rw;          /* operation */
71#if !defined(__rtems__)
72        struct  thread *uio_td;         /* owner */
73#else
74        struct  proc *uio_procp;
75#endif /* !__rtems__ */
76};
77
78/*
79 * Limits
80 *
81 * N.B.: UIO_MAXIOV must be no less than IOV_MAX from <sys/syslimits.h>
82 * which in turn must be no less than _XOPEN_IOV_MAX from <limits.h>.  If
83 * we ever make this tunable (probably pointless), then IOV_MAX should be
84 * removed from <sys/syslimits.h> and applications would be expected to use
85 * sysconf(3) to find out the correct value, or else assume the worst
86 * (_XOPEN_IOV_MAX).  Perhaps UIO_MAXIOV should be simply defined as
87 * IOV_MAX.
88 */
89#define UIO_MAXIOV      1024            /* max 1K of iov's */
90
91int     uiomove(void *cp, int n, struct uio *uio);
92
93#else /* !_KERNEL */
94
95__BEGIN_DECLS
96ssize_t readv(int, const struct iovec *, int);
97ssize_t writev(int, const struct iovec *, int);
98__END_DECLS
99
100#endif /* _KERNEL */
101
102#endif /* !_SYS_UIO_H_ */
Note: See TracBrowser for help on using the repository browser.