apm_load_configuration

one of the documented procedures in this installation of the ACS
Usage:
apm_load_configuration
What it does:
Reads configuration parameters from the database and loads them into an nsv array
Defined in: /web/philip/packages/acs-core/apm-procs.tcl

Source code:



     db_foreach "select element_id, module_key from ad_parameter_elements" {
	 if [apm_first_time_loading_p] {
	     nsv_set $module_key lock [ns_mutex create]
	 }

	 apm_load_one_parameter $element_id
    }

    db_release_unused_handles


philg@mit.edu