#include "lcmaps_types.h"
Include dependency graph for _lcmaps_runvars.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
int | lcmaps_extractRunVars (lcmaps_request_t request, lcmaps_cred_id_t lcmaps_cred) |
extract the variables from user credential that can be used by the plugins. More... | |
void* | lcmaps_getRunVars (char *argName, char *argType) |
returns a void pointer to the requested value. More... | |
int | lcmaps_setRunVars (char *argName, char *argType, void *value) |
fill the runvars_list with a value for argName and argType. More... |
Definition in file _lcmaps_runvars.h.
|
extract the variables from user credential that can be used by the plugins.
This function takes the user credential and job request (in RSL) and extracts the information which is published in the runvars_list. These variables can be accessed by the plugins.
Definition at line 97 of file lcmaps_runvars.c. |
|
returns a void pointer to the requested value.
This function returns a void pointer to the requested variable with name argName and type argType in the runvars_list. Internally it uses lcmaps_getArgValue().
Definition at line 192 of file lcmaps_runvars.c. |
|
fill the runvars_list with a value for argName and argType.
This function fills the (internal) runvars_list with the value for the variable with name argName and type argType. Internally lcmaps_setArgValue() is used.
Definition at line 233 of file lcmaps_runvars.c. |