swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 1def630a6a49dda5bc89dfbd86656293640456f0 authored by Linus Torvalds on 06 June 2006, 00:57:02 UTC
Linux 2.6.17-rc6
Tip revision: 1def630
init.h
#ifndef _ASM_INIT_H
#define _ASM_INIT_H

#define __init __attribute__ ((__section__ (".text.init")))
#define __initdata __attribute__ ((__section__ (".data.init")))
/* For assembly routines */
#define __INIT		.section	".text.init",#alloc,#execinstr
#define __FINIT		.previous
#define __INITDATA	.section	".data.init",#alloc,#write

#endif

back to top