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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/types.h
  3.  *
  4.  *  S390 version
  5.  *
  6.  *  Derived from "include/asm-i386/types.h"
  7.  */
  8. #ifndef _S390_TYPES_H
  9. #define _S390_TYPES_H
  10. typedef unsigned short 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.  * A address type so that arithmetic can be done on it & it can be upgraded to
  25.  * 64 bit when neccessary 
  26.  */
  27. typedef unsigned long  addr_t; 
  28. typedef signed long  saddr_t;
  29. /*
  30.  * These aren't exported outside the kernel to avoid name space clashes
  31.  */
  32. #ifdef __KERNEL__
  33. typedef signed char s8;
  34. typedef unsigned char u8;
  35. typedef signed short s16;
  36. typedef unsigned short u16;
  37. typedef signed int s32;
  38. typedef unsigned int u32;
  39. typedef signed long s64;
  40. typedef unsigned  long u64;
  41. #define BITS_PER_LONG 64
  42. typedef u32 dma_addr_t;
  43. #endif                                 /* __KERNEL__                       */
  44. #endif