Multi-ApplicationOnlineProfiling
2.1
|
Go to the source code of this file.
Functions | |
void | TA_Conf_entry_init (TA_Conf_key_t key, char *desc, TA_Conf_type type, char *value) |
Initialisation of the Analyzer configuration parameter's type, description and value. More... | |
int | TA_Conf_entry_update (struct TA_Conf_entry *entry, char *value) |
Update the value for a configuration parameter after control of the value's content and type. More... | |
static int | TA_Conf_get_key_index (char *key_name) |
Return the index of a key name in list of Analyser configuration keys ( TA_Conf_key_t ) More... | |
int | TA_Conf_update (char *key_name, char *val) |
Update the value for a configuration option with control of the value name. More... | |
void | TA_Conf_init_from_env () |
Initialisation of config from environment. More... | |
void | TA_Conf_init_default () |
Initialisation of the Trace_Collector with default options. More... | |
void | TA_Conf_dump (char *dest) |
Save the Analyzer_ configuration in the destination file in argument. More... | |
void | TA_Conf_load (char *source) |
Load and use a file to set the Analyzer configuration. More... | |
Variables | |
struct TA_Conf_entry | TA_Conf_entries [TA_CONF_KEY_COUNT] |
void TA_Conf_dump | ( | char * | dest | ) |
Save the Analyzer_ configuration in the destination file in argument.
dest | Configuration file destination |
Definition at line 262 of file MALP_Config.c.
void TA_Conf_entry_init | ( | TA_Conf_key_t | key, |
char * | desc, | ||
TA_Conf_type | type, | ||
char * | value | ||
) |
Initialisation of the Analyzer configuration parameter's type, description and value.
key | Configuration parameter key |
desc | Configuration parameter description. |
type | Configuration parameter value's type |
value | new value for the configuration parameter |
Definition at line 30 of file MALP_Config.c.
int TA_Conf_entry_update | ( | struct TA_Conf_entry * | entry, |
char * | value | ||
) |
Update the value for a configuration parameter after control of the value's content and type.
(see TA_Conf_update for control on the key name)
entry | Key of the configuration parameter to modify |
value | new value for the configuration parameter (should be a numerical value) |
Definition at line 56 of file MALP_Config.c.
|
inlinestatic |
Return the index of a key name in list of Analyser configuration keys ( TA_Conf_key_t )
key_name | Key of the configuration parameter to modify |
val | new value for the configuration parameter |
Definition at line 102 of file MALP_Config.c.
void TA_Conf_init_default | ( | ) |
Initialisation of the Trace_Collector with default options.
Definition at line 152 of file MALP_Config.c.
void TA_Conf_init_from_env | ( | ) |
Initialisation of config from environment.
Definition at line 131 of file MALP_Config.c.
void TA_Conf_load | ( | char * | source | ) |
Load and use a file to set the Analyzer configuration.
source | Configuration file source |
Definition at line 285 of file MALP_Config.c.
int TA_Conf_update | ( | char * | key_name, |
char * | val | ||
) |
Update the value for a configuration option with control of the value name.
key_name | Key of the Analyzer configuration parameter to modify |
val | new value for the corresponding configuration parameter (should be a numerical value) |
Definition at line 116 of file MALP_Config.c.
struct TA_Conf_entry TA_Conf_entries[TA_CONF_KEY_COUNT] |
Definition at line 25 of file MALP_Config.c.