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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)btorder.h 1.9 99/04/29 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(BIT_FIELDS_LTOH) /* Use definition from xconfig.h */
  29. #define _BIT_FIELDS_LTOH
  30. #endif
  31. #if defined(BIT_FIELDS_HTOL) /* Use definition from xconfig.h */
  32. #define _BIT_FIELDS_HTOL
  33. #endif
  34. #if defined(_BIT_FIELDS_LTOH) || defined(_BIT_FIELDS_HTOL)
  35. /*
  36.  * Bitorder is known.
  37.  */
  38. #else
  39. /*
  40.  * Bitorder not known.
  41.  */
  42. # if defined(sun3) || defined(mc68000) || 
  43.    defined(sun4) || defined(__sparc) || defined(sparc) || 
  44.    defined(__hppa) || defined(_ARCH_PPC) || defined(_IBMR2)
  45. # define _BIT_FIELDS_HTOL
  46. # endif
  47. # if defined(__sgi) && defined(__mips)
  48. # define _BIT_FIELDS_HTOL
  49. # endif
  50. # if defined(__i386) || defined(i386) || 
  51.    defined(__alpha) || defined(alpha) || 
  52.    defined(__arm) || defined(arm)
  53. # define _BIT_FIELDS_LTOH
  54. # endif
  55. # if defined(__ppc__) || defined(ppc) || defined(__ppc) || 
  56.    defined(__PPC) || defined(powerpc)
  57. # if defined(__BIG_ENDIAN__)
  58. # define _BIT_FIELDS_HTOL
  59. # else
  60. # define _BIT_FIELDS_LTOH
  61. # endif
  62. # endif
  63. #endif
  64. #endif /* _BTORDER_H */