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/dev/raid/asr/osd_defs.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) 1996-1999 Distributed Processing Technology Corporation
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source form, with or without modification, are
    6  * permitted provided that redistributions of source code must retain the
    7  * above copyright notice, this list of conditions and the following disclaimer.
    8  *
    9  * This software is provided `as is' by Distributed Processing Technology and
   10  * any express or implied warranties, including, but not limited to, the
   11  * implied warranties of merchantability and fitness for a particular purpose,
   12  * are disclaimed. In no event shall Distributed Processing Technology be
   13  * liable for any direct, indirect, incidental, special, exemplary or
   14  * consequential damages (including, but not limited to, procurement of
   15  * substitute goods or services; loss of use, data, or profits; or business
   16  * interruptions) however caused and on any theory of liability, whether in
   17  * contract, strict liability, or tort (including negligence or otherwise)
   18  * arising in any way out of the use of this driver software, even if advised
   19  * of the possibility of such damage.
   20  *
   21  * $FreeBSD: src/sys/dev/asr/osd_defs.h,v 1.7 2005/01/06 01:42:29 imp Exp $
   22  */
   23 
   24 #ifndef         _OSD_DEFS_H
   25 #define         _OSD_DEFS_H
   26 
   27 /*File - OSD_DEFS.H
   28  ****************************************************************************
   29  *
   30  *Description:
   31  *
   32  *      This file contains the OS dependent defines.  This file is included
   33  *in osd_util.h and provides the OS specific defines for that file.
   34  *
   35  *Copyright Distributed Processing Technology, Corp.
   36  *        140 Candace Dr.
   37  *        Maitland, Fl. 32751   USA
   38  *        Phone: (407) 830-5522  Fax: (407) 260-5366
   39  *        All Rights Reserved
   40  *
   41  *Author:       Doug Anderson
   42  *Date:         1/31/94
   43  *
   44  *Editors:
   45  *
   46  *Remarks:
   47  *
   48  *
   49  *****************************************************************************/
   50 
   51 
   52 /*Definitions - Defines & Constants ----------------------------------------- */
   53 
   54   /* Define the operating system */
   55 #if (defined(__linux__))
   56 # define _DPT_LINUX
   57 #elif (defined(__bsdi__))
   58 # define _DPT_BSDI
   59 #elif (defined(__FreeBSD__) || defined(__DragonFly__))
   60 # undef _DPT_FREE_BSD
   61 # define _DPT_FREE_BSD
   62 #else
   63 # define _DPT_SCO
   64 #endif
   65 
   66 #if defined(ZIL_CURSES)
   67 #define         _DPT_CURSES
   68 #else
   69 #define         _DPT_MOTIF
   70 #endif
   71 
   72   /* Redefine 'far' to nothing - no far pointer type required in UNIX */
   73 #define         far
   74 
   75   /* Define the mutually exclusive semaphore type */
   76 #define         SEMAPHORE_T     unsigned int *
   77   /* Define a handle to a DLL */
   78 #define         DLL_HANDLE_T    unsigned int *
   79 
   80 #endif

Cache object: cbe056baa9cbbb85b55e8f1fce014564


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