btorder.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)btorder.h 1.11 00/01/05 Copyright 1996 J. Schilling */
  2. /*
  3.  * Definitions for Bitordering
  4.  *
  5.  * Copyright (c) 1996 J. Schilling
  6.  */
  7. /*
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2, or (at your option)
  11.  * any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; see the file COPYING.  If not, write to
  20.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22. #ifndef _BTORDER_H
  23. #define _BTORDER_H
  24. #include <sys/types.h> /* try to load isa_defs.h on Solaris */
  25. #ifndef _MCONFIG_H
  26. #include <mconfig.h>
  27. #endif
  28. #if defined(HAVE_C_BITFIELDS) && 
  29.     defined(BITFIELDS_LTOH) /* Use definition from xconfig.h */
  30. #define _BIT_FIELDS_LTOH
  31. #endif
  32. #if defined(HAVE_C_BITFIELDS) && 
  33.     defined(BITFIELDS_HTOL) /* Use definition from xconfig.h */
  34. #define _BIT_FIELDS_HTOL
  35. #endif
  36. #if defined(HAVE_C_BITFIELDS) && 
  37.    !defined(BITFIELDS_HTOL) /* Use definition from xconfig.h */
  38. #define BITFIELDS_LTOH
  39. #define _BIT_FIELDS_LTOH
  40. #endif
  41. #if defined(_BIT_FIELDS_LTOH) || defined(_BIT_FIELDS_HTOL)
  42. /*
  43.  * Bitorder is already known.
  44.  */
  45. #else
  46. /*
  47.  * Bitorder not yet known.
  48.  */
  49. # if defined(sun3) || defined(mc68000) || 
  50.    defined(sun4) || defined(__sparc) || defined(sparc) || 
  51.    defined(__hppa) || defined(_ARCH_PPC) || defined(_IBMR2)
  52. # define _BIT_FIELDS_HTOL
  53. # endif
  54. # if defined(__sgi) && defined(__mips)
  55. # define _BIT_FIELDS_HTOL
  56. # endif
  57. # if defined(__i386__) || defined(__i386) || defined(i386) || 
  58.    defined(__alpha__) || defined(__alpha) || defined(alpha) || 
  59.    defined(__arm__) || defined(__arm) || defined(arm)
  60. # define _BIT_FIELDS_LTOH
  61. # endif
  62. # if defined(__ppc__) || defined(ppc) || defined(__ppc) || 
  63.    defined(__PPC) || defined(powerpc) || defined(__powerpc__)
  64. # if defined(__BIG_ENDIAN__)
  65. # define _BIT_FIELDS_HTOL
  66. # else
  67. # define _BIT_FIELDS_LTOH
  68. # endif
  69. # endif
  70. #endif
  71. #endif /* _BTORDER_H */