mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
448483199f
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
|
||
---|---|---|
.. | ||
config.mk | ||
process_model.c | ||
process_model.h | ||
process_model.m4 | ||
process_model.mk | ||
process_single.c | ||
process_standard.c | ||
process_thread.c | ||
server.c | ||
service_stream.c | ||
service_stream.h | ||
service_task.c | ||
service_task.h | ||
service.c |