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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.unaligned.h 1.5 05/17/01 18:14:26 cort
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef __PPC_UNALIGNED_H
  6. #define __PPC_UNALIGNED_H
  7. /*
  8.  * The PowerPC can do unaligned accesses itself in big endian mode. 
  9.  *
  10.  * The strange macros are there to make sure these can't
  11.  * be misused in a way that makes them not work on other
  12.  * architectures where unaligned accesses aren't as simple.
  13.  */
  14. #define get_unaligned(ptr) (*(ptr))
  15. #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  16. #endif
  17. #endif /* __KERNEL__ */