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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/init.h
  3.  *
  4.  *  S390 version
  5.  */
  6. #ifndef _S390_INIT_H
  7. #define _S390_INIT_H
  8. #define __init __attribute__ ((constructor))
  9. /* don't know, if need on S390 */
  10. #define __initdata
  11. #define __initfunc(__arginit) 
  12.         __arginit __init; 
  13.         __arginit
  14. /* For assembly routines
  15.  * need to define ?
  16.  */
  17. /*
  18. #define __INIT          .section        ".text.init",#alloc,#execinstr
  19. #define __FINIT .previous
  20. #define __INITDATA      .section        ".data.init",#alloc,#write
  21. */
  22. #define __cacheline_aligned __attribute__ ((__aligned__(256)))
  23. #endif