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/drivers/drivers.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 /* This is the master header for all device drivers. It includes some other
    2  * files and defines the principal constants.
    3  */
    4 #define _POSIX_SOURCE      1    /* tell headers to include POSIX stuff */
    5 #define _MINIX             1    /* tell headers to include MINIX stuff */
    6 #define _SYSTEM            1    /* get negative error number in <errno.h> */
    7 
    8 /* The following are so basic, all the *.c files get them automatically. */
    9 #include <minix/config.h>       /* MUST be first */
   10 #include <ansi.h>               /* MUST be second */
   11 #include <minix/type.h>
   12 #include <minix/com.h>
   13 #include <minix/dmap.h>
   14 #include <minix/callnr.h>
   15 #include <sys/types.h>
   16 #include <minix/const.h>
   17 #include <minix/devio.h>
   18 #include <minix/syslib.h>
   19 #include <minix/sysutil.h>
   20 #include <minix/bitmap.h>
   21 
   22 #include <ibm/interrupt.h>      /* IRQ vectors and miscellaneous ports */
   23 #include <ibm/bios.h>           /* BIOS index numbers */
   24 #include <ibm/ports.h>          /* Well-known ports */
   25 
   26 #include <string.h>
   27 #include <signal.h>
   28 #include <stdlib.h>
   29 #include <limits.h>
   30 #include <stddef.h>
   31 #include <errno.h>
   32 #include <unistd.h>
   33 

Cache object: 0ef971ede078cd7f4ae9d6b75db589dc


[ 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.