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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ALPHA_TYPES_H
  2. #define _ALPHA_TYPES_H
  3. /*
  4.  * This file is never included by application software unless
  5.  * explicitly requested (e.g., via linux/types.h) in which case the
  6.  * application is Linux specific so (user-) name space pollution is
  7.  * not a major issue.  However, for interoperability, libraries still
  8.  * need to be careful to avoid a name clashes.
  9.  */
  10. typedef unsigned int umode_t;
  11. /*
  12.  * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
  13.  * header files exported to user space
  14.  */
  15. typedef __signed__ char __s8;
  16. typedef unsigned char __u8;
  17. typedef __signed__ short __s16;
  18. typedef unsigned short __u16;
  19. typedef __signed__ int __s32;
  20. typedef unsigned int __u32;
  21. typedef __signed__ long __s64;
  22. typedef unsigned long __u64;
  23. /*
  24.  * These aren't exported outside the kernel to avoid name space clashes
  25.  */
  26. #ifdef __KERNEL__
  27. typedef signed char s8;
  28. typedef unsigned char u8;
  29. typedef signed short s16;
  30. typedef unsigned short u16;
  31. typedef signed int s32;
  32. typedef unsigned int u32;
  33. typedef signed long s64;
  34. typedef unsigned long u64;
  35. #define BITS_PER_LONG 64
  36. typedef u64 dma_addr_t;
  37. typedef u64 dma64_addr_t;
  38. #endif /* __KERNEL__ */
  39. #endif /* _ALPHA_TYPES_H */