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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: byteorder.h,v 1.1 2000/07/10 16:32:31 bjornw Exp $ */
  2. #ifndef _CRIS_BYTEORDER_H
  3. #define _CRIS_BYTEORDER_H
  4. #include <asm/types.h>
  5. #ifdef __GNUC__
  6. /* we just define these two (as we can do the swap in a single
  7.  * asm instruction in CRIS) and the arch-independent files will put
  8.  * them together into ntohl etc.
  9.  */
  10. static __inline__ __const__ __u32 ___arch__swab32(__u32 x)
  11. {
  12. __asm__ ("swapwb %0" : "=r" (x) : "0" (x));
  13.   
  14. return(x);
  15. }
  16. static __inline__ __const__ __u16 ___arch__swab16(__u16 x)
  17. {
  18. __asm__ ("swapb %0" : "=r" (x) : "0" (x));
  19. return(x);
  20. }
  21. /* defines are necessary because the other files detect the presence
  22.  * of a defined __arch_swab32, not an inline
  23.  */
  24. #define __arch__swab32(x) ___arch__swab32(x)
  25. #define __arch__swab16(x) ___arch__swab16(x)
  26. #if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
  27. #  define __BYTEORDER_HAS_U64__
  28. #  define __SWAB_64_THRU_32__
  29. #endif
  30. #endif /* __GNUC__ */
  31. #include <linux/byteorder/little_endian.h>
  32. #endif