Provide definitions of __initcall, __exitcall, and __init_call for userspace code.
Signed-off-by: Jeff Dike <[EMAIL PROTECTED]> Index: 2.6.10/arch/um/include/init.h =================================================================== --- 2.6.10.orig/arch/um/include/init.h 2005-01-16 20:37:24.000000000 -0500 +++ 2.6.10/arch/um/include/init.h 2005-01-16 20:39:58.000000000 -0500 @@ -109,6 +109,15 @@ #define __uml_postsetup_call __attribute_used__ __attribute__ ((__section__ (".uml.postsetup.init"))) #define __uml_exit_call __attribute_used__ __attribute__ ((__section__ (".uml.exitcall.exit"))) +#ifndef __KERNEL__ + +#define __initcall(fn) static initcall_t __initcall_##fn __init_call = fn +#define __exitcall(fn) static exitcall_t __exitcall_##fn __exit_call = fn + +#define __init_call __attribute__ ((unused,__section__ (".initcall.init"))) + +#endif + #endif /* _LINUX_UML_INIT_H */ /* - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/