types.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

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. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  27. typedef __signed__ long long __s64;
  28. typedef unsigned long long __u64;
  29. #endif
  30. #endif
  31. /*
  32.  * These aren't exported outside the kernel to avoid name space clashes
  33.  */
  34. #ifdef __KERNEL__
  35. typedef __signed char s8;
  36. typedef unsigned char u8;
  37. typedef __signed short s16;
  38. typedef unsigned short u16;
  39. typedef __signed int s32;
  40. typedef unsigned int u32;
  41. #if (_MIPS_SZLONG == 64)
  42. typedef __signed__ long s64;
  43. typedef unsigned long u64;
  44. #else
  45. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  46. typedef __signed__ long long s64;
  47. typedef unsigned long long u64;
  48. #endif
  49. #endif
  50. #define BITS_PER_LONG _MIPS_SZLONG
  51. typedef u64 dma_addr_t;
  52. typedef u64 dma64_addr_t;
  53. typedef unsigned long phys_t;
  54. #endif /* __KERNEL__ */
  55. #endif /* _ASM_TYPES_H */