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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_SPARC64_UNALIGNED_H_
  2. #define _ASM_SPARC64_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_SPARC64_UNALIGNED_H */