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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _I386_TYPES_H
  2. #define _I386_TYPES_H
  3. typedef unsigned short umode_t;
  4. /*
  5.  * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
  6.  * header files exported to user space
  7.  */
  8. typedef __signed__ char __s8;
  9. typedef unsigned char __u8;
  10. typedef __signed__ short __s16;
  11. typedef unsigned short __u16;
  12. typedef __signed__ int __s32;
  13. typedef unsigned int __u32;
  14. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  15. typedef __signed__ long long __s64;
  16. typedef unsigned long long __u64;
  17. #endif
  18. /*
  19.  * These aren't exported outside the kernel to avoid name space clashes
  20.  */
  21. #ifdef __KERNEL__
  22. #include <linux/config.h>
  23. typedef signed char s8;
  24. typedef unsigned char u8;
  25. typedef signed short s16;
  26. typedef unsigned short u16;
  27. typedef signed int s32;
  28. typedef unsigned int u32;
  29. typedef signed long long s64;
  30. typedef unsigned long long u64;
  31. #define BITS_PER_LONG 32
  32. /* DMA addresses come in generic and 64-bit flavours.  */
  33. #ifdef CONFIG_HIGHMEM
  34. typedef u64 dma_addr_t;
  35. #else
  36. typedef u32 dma_addr_t;
  37. #endif
  38. typedef u64 dma64_addr_t;
  39. #endif /* __KERNEL__ */
  40. #endif