riotypes.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /****************************************************************************
  2.  *******                                                              *******
  3.  *******                      R I O T Y P E S
  4.  *******                                                              *******
  5.  ****************************************************************************
  6.  Author  : Jon Brawn
  7.  Date    :
  8.  *
  9.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  10.  *
  11.  *      This program is free software; you can redistribute it and/or modify
  12.  *      it under the terms of the GNU General Public License as published by
  13.  *      the Free Software Foundation; either version 2 of the License, or
  14.  *      (at your option) any later version.
  15.  *
  16.  *      This program is distributed in the hope that it will be useful,
  17.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *      GNU General Public License for more details.
  20.  *
  21.  *      You should have received a copy of the GNU General Public License
  22.  *      along with this program; if not, write to the Free Software
  23.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  Version : 0.01
  25.                             Mods
  26.  ----------------------------------------------------------------------------
  27.   Date     By                Description
  28.  ----------------------------------------------------------------------------
  29.  ***************************************************************************/
  30. #ifndef _riotypes_h
  31. #define _riotypes_h 1
  32. #ifdef SCCS_LABELS
  33. #ifndef lint
  34. /* static char *_rio_riotypes_h_sccs = "@(#)riotypes.h 1.10"; */
  35. #endif
  36. #endif
  37. #ifdef INKERNEL
  38. #if !defined(MIPSAT)
  39. typedef unsigned short NUMBER_ptr;
  40. typedef unsigned short WORD_ptr;
  41. typedef unsigned short BYTE_ptr;
  42. typedef unsigned short char_ptr;
  43. typedef unsigned short Channel_ptr;
  44. typedef unsigned short FREE_LIST_ptr_ptr;
  45. typedef unsigned short FREE_LIST_ptr;
  46. typedef unsigned short LPB_ptr;
  47. typedef unsigned short Process_ptr;
  48. typedef unsigned short PHB_ptr;
  49. typedef unsigned short PKT_ptr;
  50. typedef unsigned short PKT_ptr_ptr;
  51. typedef unsigned short Q_BUF_ptr;
  52. typedef unsigned short Q_BUF_ptr_ptr;
  53. typedef unsigned short ROUTE_STR_ptr;
  54. typedef unsigned short RUP_ptr;
  55. typedef unsigned short short_ptr;
  56. typedef unsigned short u_short_ptr;
  57. typedef unsigned short ushort_ptr;
  58. #else
  59. /* MIPSAT types */
  60. typedef char RIO_POINTER[8];
  61. typedef RIO_POINTER NUMBER_ptr;
  62. typedef RIO_POINTER WORD_ptr;
  63. typedef RIO_POINTER BYTE_ptr;
  64. typedef RIO_POINTER char_ptr;
  65. typedef RIO_POINTER Channel_ptr;
  66. typedef RIO_POINTER FREE_LIST_ptr_ptr;
  67. typedef RIO_POINTER FREE_LIST_ptr;
  68. typedef RIO_POINTER LPB_ptr;
  69. typedef RIO_POINTER Process_ptr;
  70. typedef RIO_POINTER PHB_ptr;
  71. typedef RIO_POINTER PKT_ptr;
  72. typedef RIO_POINTER PKT_ptr_ptr;
  73. typedef RIO_POINTER Q_BUF_ptr;
  74. typedef RIO_POINTER Q_BUF_ptr_ptr;
  75. typedef RIO_POINTER ROUTE_STR_ptr;
  76. typedef RIO_POINTER RUP_ptr;
  77. typedef RIO_POINTER short_ptr;
  78. typedef RIO_POINTER u_short_ptr;
  79. typedef RIO_POINTER ushort_ptr;
  80. #endif
  81. #else /* not INKERNEL */
  82. typedef unsigned char   BYTE;
  83. typedef unsigned short  WORD;
  84. typedef unsigned long   DWORD;
  85. typedef short           NUMBER;
  86. typedef short           *NUMBER_ptr;
  87. typedef unsigned short  *WORD_ptr;
  88. typedef unsigned char   *BYTE_ptr;
  89. typedef unsigned char   uchar ;
  90. typedef unsigned short  ushort ;
  91. typedef unsigned int    uint ;
  92. typedef unsigned long   ulong ;
  93. typedef unsigned char   u_char ;
  94. typedef unsigned short  u_short ;
  95. typedef unsigned int    u_int ;
  96. typedef unsigned long   u_long ;
  97. typedef unsigned short  ERROR ;
  98. typedef unsigned long ID ;
  99. typedef char             *char_ptr;
  100. typedef Channel          *Channel_ptr;
  101. typedef struct FREE_LIST *FREE_LIST_ptr;
  102. typedef struct FREE_LIST **FREE_LIST_ptr_ptr;
  103. typedef struct LPB       *LPB_ptr;
  104. typedef struct Process   *Process_ptr;
  105. typedef struct PHB       *PHB_ptr;
  106. typedef struct PKT       *PKT_ptr;
  107. typedef struct PKT       **PKT_ptr_ptr;
  108. typedef struct Q_BUF     *Q_BUF_ptr;
  109. typedef struct Q_BUF     **Q_BUF_ptr_ptr;
  110. typedef struct ROUTE_STR *ROUTE_STR_ptr;
  111. typedef struct RUP       *RUP_ptr;
  112. typedef short            *short_ptr;
  113. typedef u_short          *u_short_ptr;
  114. typedef ushort           *ushort_ptr;
  115. typedef struct PKT  PKT;
  116. typedef struct LPB  LPB;
  117. typedef struct RUP  RUP;
  118. #endif
  119. #endif /* __riotypes__ */
  120. /*********** end of file ***********/