source: rtems/cpukit/libcsupport/include/sys/ioccom.h @ e37ed99c

4.115
Last change on this file since e37ed99c was e37ed99c, checked in by Sebastian Huber <sebastian.huber@…>, on 05/15/12 at 14:25:21

Filesystem: Add missing include file <stdint.h>

  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*-
2 * Copyright (c) 1982, 1986, 1990, 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 *      @(#)ioccom.h    8.2 (Berkeley) 3/28/94
30 * $FreeBSD: src/sys/sys/ioccom.h,v 1.15 2004/04/07 04:19:49 imp Exp $
31 */
32
33#ifndef _SYS_IOCCOM_H_
34#define _SYS_IOCCOM_H_
35
36#include <sys/types.h>
37#include <stdint.h>
38
39/*
40 * Ioctl's have the command encoded in the lower word, and the size of
41 * any in or out parameters in the upper word.  The high 3 bits of the
42 * upper word are used to encode the in/out status of the parameter.
43 */
44#define IOCPARM_MASK    0x1fff          /* parameter length, at most 13 bits */
45#define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
46#define IOCBASECMD(x)   ((x) & ~(IOCPARM_MASK << 16))
47#define IOCGROUP(x)     (((x) >> 8) & 0xff)
48
49#define IOCPARM_MAX     PAGE_SIZE               /* max size of ioctl, mult. of PAGE_SIZE */
50#define IOC_VOID        0x20000000      /* no parameters */
51#define IOC_OUT         0x40000000      /* copy out parameters */
52#define IOC_IN          0x80000000      /* copy in parameters */
53#define IOC_INOUT       (IOC_IN|IOC_OUT)
54#define IOC_DIRMASK     0xe0000000      /* mask for IN/OUT/VOID */
55
56#define _IOC(inout,group,num,len) \
57        (u_int32_t) ((u_int32_t)inout | \
58         (u_int32_t) ((u_int32_t)((u_int32_t)len & IOCPARM_MASK) << 16) | \
59         (u_int32_t)((group) << 8) | \
60         (u_int32_t)(num))
61#define _IO(g,n)        _IOC(IOC_VOID,  (g), (n), 0)
62#define _IOR(g,n,t)     _IOC(IOC_OUT,   (g), (n), sizeof(t))
63#define _IOW(g,n,t)     _IOC(IOC_IN,    (g), (n), sizeof(t))
64/* this should be _IORW, but stdio got there first */
65#define _IOWR(g,n,t)    _IOC(IOC_INOUT, (g), (n), sizeof(t))
66
67/*
68 *  IOCTL values
69 */
70
71#define       RTEMS_IO_GET_ATTRIBUTES 1
72#define       RTEMS_IO_SET_ATTRIBUTES 2
73#define       RTEMS_IO_TCDRAIN        3
74#define       RTEMS_IO_RCVWAKEUP      4
75#define       RTEMS_IO_SNDWAKEUP      5
76
77/* copied from libnetworking/sys/filio.h and commented out there */
78/* Generic file-descriptor ioctl's. */
79#define FIOCLEX          _IO('f', 1)            /* set close on exec on fd */
80#define FIONCLEX         _IO('f', 2)            /* remove close on exec */
81#define FIONREAD        _IOR('f', 127, int)     /* get # bytes to read */
82#define FIONBIO         _IOW('f', 126, int)     /* set/clear non-blocking i/o */
83#define FIOASYNC        _IOW('f', 125, int)     /* set/clear async i/o */
84#define FIOSETOWN       _IOW('f', 124, int)     /* set owner */
85#define FIOGETOWN       _IOR('f', 123, int)     /* get owner */
86
87typedef uint32_t ioctl_command_t;
88
89#ifndef _KERNEL
90
91#include <sys/cdefs.h>
92
93__BEGIN_DECLS
94int     ioctl(int, ioctl_command_t, ...);
95__END_DECLS
96
97#endif /* !KERNEL */
98
99#endif /* !_SYS_IOCCOM_H_ */
Note: See TracBrowser for help on using the repository browser.