The ll_query subroutine initializes the query object and defines the type of query you want to perform. The LL_element created and the corresponding data returned by this function is determined by the query_type you select.
LoadLeveler API library libllapi.a
#include "llapi.h" LL_element * ll_query(enum QueryType query_type);
query_type is the input field for this subroutine.
This subroutine is used in conjunction with other data access subroutines to query information about job and machine objects. You must call ll_query prior to using the other data access subroutines.
This subroutine returns a pointer to an LL_element object. The pointer is used by subsequent data access subroutine calls.
Subroutines: ll_get_data, ll_set_request, ll_reset_request, ll_get_objs, ll_free_objs, ll_next_obj, ll_deallocate.