Linux-2.3.3 and a short hiatus..
[davej-history.git] / include / asm-sparc64 / init.h
blob4aec3125aab9d059b560ad5037db917f8159cf65
1 #ifndef _SPARC_INIT_H
2 #define _SPARC_INIT_H
4 #define __init __attribute__ ((__section__ (".text.init")))
5 #define __initdata __attribute__ ((__section__ (".data.init")))
6 #define __initfunc(__arginit) \
7 __arginit __init; \
8 __arginit
9 /* For assembly routines */
10 #define __INIT .section ".text.init",#alloc,#execinstr
11 #define __FINIT .previous
12 #define __INITDATA .section ".data.init",#alloc,#write
14 #define __cacheline_aligned __attribute__ ((aligned (64)))
16 #endif