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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 1995, 1996, 1999 by Ralf Baechle
  7.  * Copyright (C) 1999 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_TYPES_H
  10. #define _ASM_TYPES_H
  11. typedef unsigned int umode_t;
  12. /*
  13.  * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
  14.  * header files exported to user space
  15.  */
  16. typedef __signed__ char __s8;
  17. typedef unsigned char __u8;
  18. typedef __signed__ short __s16;
  19. typedef unsigned short __u16;
  20. typedef __signed__ int __s32;
  21. typedef unsigned int __u32;
  22. #if (_MIPS_SZLONG == 64)
  23. typedef __signed__ long __s64;
  24. typedef unsigned long __u64;
  25. #else
  26.  
  27. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  28. typedef __signed__ long long __s64;
  29. typedef unsigned long long __u64;
  30. #endif
  31.  
  32. #endif
  33. /*
  34.  * These aren't exported outside the kernel to avoid name space clashes
  35.  */
  36. #ifdef __KERNEL__
  37. typedef __signed char s8;
  38. typedef unsigned char u8;
  39. typedef __signed short s16;
  40. typedef unsigned short u16;
  41. typedef __signed int s32;
  42. typedef unsigned int u32;
  43. #if (_MIPS_SZLONG == 64)
  44. typedef __signed__ long s64;
  45. typedef unsigned long u64;
  46. #else
  47. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  48. typedef __signed__ long long s64;
  49. typedef unsigned long long u64;
  50. #endif
  51. #endif
  52. #define BITS_PER_LONG _MIPS_SZLONG
  53. typedef unsigned long dma_addr_t;
  54. #endif /* __KERNEL__ */
  55. #endif /* _ASM_TYPES_H */