From 448483199fb436309735f5203b3282fca2c517ec Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 26 Dec 2005 16:46:55 +0000 Subject: r12494: Support loading modules from .so files for most subsystems. We now use a different system for initializing the modules for a subsystem. Most subsystems now have an init function that looks something like this: init_module_fn static_init[] = STATIC_AUTH_MODULES; init_module_fn *shared_init = load_samba_modules(NULL, "auth"); run_init_functions(static_init); run_init_functions(shared_init); talloc_free(shared_init); I hope to eliminate the other init functions later on (the init_programname_subsystems; defines). (This used to be commit b6d2ad4ce0a91c4be790dd258820c492ff1787ea) --- source4/build/smb_build/TODO | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/build/smb_build/TODO') diff --git a/source4/build/smb_build/TODO b/source4/build/smb_build/TODO index 190940fadb..f98a3d2bb5 100644 --- a/source4/build/smb_build/TODO +++ b/source4/build/smb_build/TODO @@ -7,6 +7,10 @@ (in Samba or other projects) can use the same (3rd) library. - add register function to smbtorture - init functions per shared library / binary + - add init functions + use lists of function pointers + - rpc_ndr + - list not automatically generated + - utility function for 'init mutex' - install shared modules - call load_modules() from subsystems/libraries/binaries with modules - remove smb_build.h include from includes.h and INIT_OBJ_FILES. Replace -- cgit