The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/types.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1982, 1986, 1991, 1993, 1994
    3  *      The Regents of the University of California.  All rights reserved.
    4  * (c) UNIX System Laboratories, Inc.
    5  * All or some portions of this file are derived from material licensed
    6  * to the University of California by American Telephone and Telegraph
    7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
    8  * the permission of UNIX System Laboratories, Inc.
    9  *
   10  * Redistribution and use in source and binary forms, with or without
   11  * modification, are permitted provided that the following conditions
   12  * are met:
   13  * 1. Redistributions of source code must retain the above copyright
   14  *    notice, this list of conditions and the following disclaimer.
   15  * 2. Redistributions in binary form must reproduce the above copyright
   16  *    notice, this list of conditions and the following disclaimer in the
   17  *    documentation and/or other materials provided with the distribution.
   18  * 3. All advertising materials mentioning features or use of this software
   19  *    must display the following acknowledgement:
   20  *      This product includes software developed by the University of
   21  *      California, Berkeley and its contributors.
   22  * 4. Neither the name of the University nor the names of its contributors
   23  *    may be used to endorse or promote products derived from this software
   24  *    without specific prior written permission.
   25  *
   26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   36  * SUCH DAMAGE.
   37  *
   38  *      @(#)types.h     8.6 (Berkeley) 2/19/95
   39  * $FreeBSD: releng/5.0/sys/sys/types.h 105683 2002-10-22 09:57:34Z tjr $
   40  */
   41 
   42 #ifndef _SYS_TYPES_H_
   43 #define _SYS_TYPES_H_
   44 
   45 #include <sys/cdefs.h>
   46 
   47 /* Machine type dependent parameters. */
   48 #include <machine/endian.h>
   49 #include <sys/_types.h>
   50 
   51 #if __BSD_VISIBLE
   52 typedef unsigned char   u_char;
   53 typedef unsigned short  u_short;
   54 typedef unsigned int    u_int;
   55 typedef unsigned long   u_long;
   56 typedef unsigned short  ushort;         /* Sys V compatibility */
   57 typedef unsigned int    uint;           /* Sys V compatibility */
   58 #endif
   59 
   60 /*
   61  * XXX POSIX sized integrals that should appear only in <sys/stdint.h>.
   62  */
   63 #ifndef _INT8_T_DECLARED
   64 typedef __int8_t        int8_t;
   65 #define _INT8_T_DECLARED
   66 #endif
   67 
   68 #ifndef _INT16_T_DECLARED
   69 typedef __int16_t       int16_t;
   70 #define _INT16_T_DECLARED
   71 #endif
   72 
   73 #ifndef _INT32_T_DECLARED
   74 typedef __int32_t       int32_t;
   75 #define _INT32_T_DECLARED
   76 #endif
   77 
   78 #ifndef _INT64_T_DECLARED
   79 typedef __int64_t       int64_t;
   80 #define _INT64_T_DECLARED
   81 #endif
   82 
   83 #ifndef _UINT8_T_DECLARED
   84 typedef __uint8_t       uint8_t;
   85 #define _UINT8_T_DECLARED
   86 #endif
   87 
   88 #ifndef _UINT16_T_DECLARED
   89 typedef __uint16_t      uint16_t;
   90 #define _UINT16_T_DECLARED
   91 #endif
   92 
   93 #ifndef _UINT32_T_DECLARED
   94 typedef __uint32_t      uint32_t;
   95 #define _UINT32_T_DECLARED
   96 #endif
   97 
   98 #ifndef _UINT64_T_DECLARED
   99 typedef __uint64_t      uint64_t;
  100 #define _UINT64_T_DECLARED
  101 #endif
  102 
  103 #ifndef _INTPTR_T_DECLARED
  104 typedef __intptr_t      intptr_t;
  105 typedef __uintptr_t     uintptr_t;
  106 #define _INTPTR_T_DECLARED
  107 #endif
  108 
  109 typedef __uint8_t       u_int8_t;       /* unsigned integrals (deprecated) */
  110 typedef __uint16_t      u_int16_t;
  111 typedef __uint32_t      u_int32_t;
  112 typedef __uint64_t      u_int64_t;
  113 
  114 typedef __uint64_t      u_quad_t;       /* quads (deprecated) */
  115 typedef __int64_t       quad_t;
  116 typedef quad_t *        qaddr_t;
  117 
  118 typedef char *          caddr_t;        /* core address */
  119 typedef __const char *  c_caddr_t;      /* core address, pointer to const */
  120 typedef __volatile char *v_caddr_t;     /* core address, pointer to volatile */
  121 typedef __critical_t    critical_t;     /* Critical section value */
  122 typedef __int64_t       daddr_t;        /* disk address */
  123 typedef __uint32_t      fixpt_t;        /* fixed point number */
  124 
  125 #ifndef _GID_T_DECLARED
  126 typedef __gid_t         gid_t;          /* group id */
  127 #define _GID_T_DECLARED
  128 #endif
  129 
  130 #ifndef _IN_ADDR_T_DECLARED
  131 typedef __uint32_t      in_addr_t;      /* base type for internet address */
  132 #define _IN_ADDR_T_DECLARED
  133 #endif
  134 
  135 #ifndef _IN_PORT_T_DECLARED
  136 typedef __uint16_t      in_port_t;
  137 #define _IN_PORT_T_DECLARED
  138 #endif
  139 
  140 #ifndef _ID_T_DECLARED
  141 typedef __id_t          id_t;           /* can hold a uid_t or pid_t */
  142 #define _ID_T_DECLARED
  143 #endif
  144 
  145 typedef __uint32_t      ino_t;          /* inode number */
  146 
  147 #ifndef _KEY_T_DECLARED
  148 typedef __key_t         key_t;          /* IPC key (for Sys V IPC) */
  149 #define _KEY_T_DECLARED
  150 #endif
  151 
  152 #ifndef _MODE_T_DECLARED
  153 typedef __mode_t        mode_t;         /* permissions */
  154 #define _MODE_T_DECLARED
  155 #endif
  156 
  157 typedef __uint16_t      nlink_t;        /* link count */
  158 
  159 #ifndef _OFF_T_DECLARED
  160 typedef __off_t         off_t;          /* file offset */
  161 #define _OFF_T_DECLARED
  162 #endif
  163 
  164 #ifndef _PID_T_DECLARED
  165 typedef __pid_t         pid_t;          /* process id */
  166 #define _PID_T_DECLARED
  167 #endif
  168 
  169 typedef __register_t    register_t;
  170 
  171 #ifndef _RLIM_T_DECLARED
  172 typedef __rlim_t        rlim_t;         /* resource limit */
  173 #define _RLIM_T_DECLARED
  174 #endif
  175 
  176 typedef __segsz_t       segsz_t;        /* segment size (in pages) */
  177 typedef __u_register_t  u_register_t;
  178 
  179 #ifndef _UID_T_DECLARED
  180 typedef __uid_t         uid_t;          /* user id */
  181 #define _UID_T_DECLARED
  182 #endif
  183 
  184 typedef __vm_offset_t   vm_offset_t;
  185 typedef __vm_ooffset_t  vm_ooffset_t;
  186 typedef __vm_pindex_t   vm_pindex_t;
  187 typedef __vm_size_t     vm_size_t;
  188 
  189 #ifdef _KERNEL
  190 typedef int             boolean_t;
  191 typedef __intfptr_t     intfptr_t;
  192 
  193 /*-
  194  * XXX this is fixed width for historical reasons.  It should have had type
  195  * __int_fast32_t.  Fixed-width types should not be used unless binary
  196  * compatibility is essential.  Least-width types should be used even less
  197  * since they provide smaller benefits.
  198  * XXX should be MD.
  199  * XXX this is bogus in -current, but still used for spl*().
  200  */
  201 typedef __uint32_t      intrmask_t;     /* Interrupt mask (spl, xxx_imask...) */
  202 
  203 typedef __uintfptr_t    uintfptr_t;
  204 typedef __uint64_t      uoff_t;
  205 typedef struct vm_page  *vm_page_t;
  206 
  207 struct cdev;
  208 
  209 typedef __uint32_t      udev_t;         /* device number */
  210 typedef struct cdev     *dev_t;
  211 
  212 #define offsetof(type, field) __offsetof(type, field)
  213 
  214 #else /* !_KERNEL */
  215 
  216 typedef __uint32_t      dev_t;          /* device number */
  217 #define udev_t dev_t
  218 
  219 #endif /* !_KERNEL */
  220 
  221 #ifndef _CLOCK_T_DECLARED
  222 typedef __clock_t       clock_t;
  223 #define _CLOCK_T_DECLARED
  224 #endif
  225 
  226 #ifndef _CLOCKID_T_DECLARED
  227 typedef __clockid_t     clockid_t;
  228 #define _CLOCKID_T_DECLARED
  229 #endif
  230 
  231 #ifndef _FFLAGS_T_DECLARED
  232 typedef __fflags_t      fflags_t;       /* file flags */
  233 #define _FFLAGS_T_DECLARED
  234 #endif
  235 
  236 #ifndef _FSBLKCNT_T_DECLARED            /* for statvfs() */
  237 typedef __fsblkcnt_t    fsblkcnt_t;
  238 typedef __fsfilcnt_t    fsfilcnt_t;
  239 #define _FSBLKCNT_T_DECLARED
  240 #endif
  241 
  242 #ifndef _SIZE_T_DECLARED
  243 typedef __size_t        size_t;
  244 #define _SIZE_T_DECLARED
  245 #endif
  246 
  247 #ifndef _SSIZE_T_DECLARED
  248 typedef __ssize_t       ssize_t;
  249 #define _SSIZE_T_DECLARED
  250 #endif
  251 
  252 #ifndef _TIME_T_DECLARED
  253 typedef __time_t        time_t;
  254 #define _TIME_T_DECLARED
  255 #endif
  256 
  257 #ifndef _TIMER_T_DECLARED
  258 typedef __timer_t       timer_t;
  259 #define _TIMER_T_DECLARED
  260 #endif
  261 
  262 /*
  263  * The following are all things that really shouldn't exist in this header,
  264  * since its purpose is to provide typedefs, not miscellaneous doodads.
  265  */
  266 #if __BSD_VISIBLE
  267 
  268 #include <sys/select.h>
  269 
  270 #ifndef _KERNEL
  271 /*
  272  * minor() gives a cookie instead of an index since we don't want to
  273  * change the meanings of bits 0-15 or waste time and space shifting
  274  * bits 16-31 for devices that don't use them.
  275  */
  276 #define major(x)        ((int)(((u_int)(x) >> 8)&0xff)) /* major number */
  277 #define minor(x)        ((int)((x)&0xffff00ff))         /* minor number */
  278 #define makedev(x,y)    ((dev_t)(((x) << 8) | (y)))     /* create dev_t */
  279 #endif /* !_KERNEL */
  280 
  281 /*
  282  * These declarations belong elsewhere, but are repeated here and in
  283  * <stdio.h> to give broken programs a better chance of working with
  284  * 64-bit off_t's.
  285  */
  286 #ifndef _KERNEL
  287 __BEGIN_DECLS
  288 #ifndef _FTRUNCATE_DECLARED
  289 #define _FTRUNCATE_DECLARED
  290 int      ftruncate(int, off_t);
  291 #endif
  292 #ifndef _LSEEK_DECLARED
  293 #define _LSEEK_DECLARED
  294 off_t    lseek(int, off_t, int);
  295 #endif
  296 #ifndef _MMAP_DECLARED
  297 #define _MMAP_DECLARED
  298 void *   mmap(void *, size_t, int, int, int, off_t);
  299 #endif
  300 #ifndef _TRUNCATE_DECLARED
  301 #define _TRUNCATE_DECLARED
  302 int      truncate(const char *, off_t);
  303 #endif
  304 __END_DECLS
  305 #endif /* !_KERNEL */
  306 
  307 #endif /* __BSD_VISIBLE */
  308 
  309 #endif /* !_SYS_TYPES_H_ */

Cache object: 3253854971c854782abfc6dbf509a719


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.