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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __CRIS_UNALIGNED_H
  2. #define __CRIS_UNALIGNED_H
  3. /*
  4.  * CRIS can do unaligned accesses itself. 
  5.  *
  6.  * The strange macros are there to make sure these can't
  7.  * be misused in a way that makes them not work on other
  8.  * architectures where unaligned accesses aren't as simple.
  9.  */
  10. #define get_unaligned(ptr) (*(ptr))
  11. #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  12. #endif