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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: types.h,v 1.12 2000/01/29 02:23:25 anton Exp $ */
  2. #ifndef _SPARC_TYPES_H
  3. #define _SPARC_TYPES_H
  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. /*
  9.  * This file is never included by application software unless
  10.  * explicitly requested (e.g., via linux/types.h) in which case the
  11.  * application is Linux specific so (user-) name space pollution is
  12.  * not a major issue.  However, for interoperability, libraries still
  13.  * need to be careful to avoid a name clashes.
  14.  */
  15. typedef unsigned short umode_t;
  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. typedef __signed__ long long __s64;
  23. typedef unsigned long long __u64;
  24. #ifdef __KERNEL__
  25. typedef __signed__ char s8;
  26. typedef unsigned char u8;
  27. typedef __signed__ short s16;
  28. typedef unsigned short u16;
  29. typedef __signed__ int s32;
  30. typedef unsigned int u32;
  31. typedef __signed__ long long s64;
  32. typedef unsigned long long u64;
  33. #define BITS_PER_LONG 32
  34. typedef u32 dma_addr_t;
  35. typedef u32 dma64_addr_t;
  36. #endif /* __KERNEL__ */
  37. #endif /* defined(_SPARC_TYPES_H) */