⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 init.h

📁 《嵌入式系统设计与实例开发实验教材二源码》Linux内核移植与编译实验
💻 H
字号:
/* *  include/asm-s390/init.h * *  S390 version */#ifndef _S390_INIT_H#define _S390_INIT_H#define __init __attribute__ ((constructor))/* don't know, if need on S390 */#define __initdata#define __initfunc(__arginit) \        __arginit __init; \        __arginit/* For assembly routines * need to define ? *//*#define __INIT          .section        ".text.init",#alloc,#execinstr#define __FINIT .previous#define __INITDATA      .section        ".data.init",#alloc,#write*/#define __cacheline_aligned __attribute__ ((__aligned__(256)))#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -