Home
last modified time | relevance | path

Searched refs:__attribute_used__ (Results 1 – 4 of 4) sorted by relevance

/linux-2.4.37.9/include/linux/
Dinit.h55 static initcall_t __initcall_##fn __attribute_used__ __init_call = fn
71 static struct kernel_param __setup_##fn __attribute_used__ __initsetup = { __setup_str_##fn, fn }
80 #define __exit __attribute_used__ __attribute__ (( __section__(".text.exit")))
82 #define __exitdata __attribute_used__ __attribute__ ((__section__ (".data.exit")))
83 #define __initsetup __attribute_used__ __attribute__ ((__section__ (".setup.init")))
84 #define __init_call __attribute_used__ __attribute__ ((__section__ (".initcall.init")))
85 #define __exit_call __attribute_used__ __attribute__ ((__section__ (".exitcall.exit")))
Dcompiler.h17 #define __attribute_used__ __attribute__((__used__)) macro
20 # define __attribute_used__ __attribute__((__used__)) macro
22 # define __attribute_used__ __attribute__((__unused__)) macro
25 #define __attribute_used__ __attribute__((__unused__)) macro
27 #define __attribute_used__ /* not implemented */ macro
Dmodule.h258 __attribute_used__ = sizeof(struct gtype##_id); \
260 __attribute_used__ = name
288 static const char __module_license[] __attribute_used__ __attribute__((section(".modinfo"))) = \
300 static const char __module_kernel_version[] __attribute_used__ __attribute__((section(".modinfo")))…
303 static const char __module_using_checksums[] __attribute_used__ __attribute__((section(".modinfo"))…
323 __attribute_used__ __attribute__ ((__section__(".data.exit"))) = name
/linux-2.4.37.9/arch/sparc64/kernel/
Dunaligned.c169 static void __attribute_used__ unaligned_panic(char *str, struct pt_regs *regs) in unaligned_panic()