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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_SPARC_UNALIGNED_H_
  2. #define _ASM_SPARC_UNALIGNED_H_
  3. /* Sparc can't handle unaligned accesses. */
  4. #include <linux/string.h>
  5. /* Use memmove here, so gcc does not insert a __builtin_memcpy. */
  6. #define get_unaligned(ptr) 
  7.   ({ __typeof__(*(ptr)) __tmp; memmove(&__tmp, (ptr), sizeof(*(ptr))); __tmp; })
  8. #define put_unaligned(val, ptr)
  9.   ({ __typeof__(*(ptr)) __tmp = (val);
  10.      memmove((ptr), &__tmp, sizeof(*(ptr)));
  11.      (void)0; })
  12. #endif /* _ASM_SPARC_UNALIGNED_H */