Looks up information about an interface in the Global Location Broker (GLB) database.
void lb_$lookup_interface (object_interface, lookup_handle) void lb_$lookup_interface (max_results, num_results, results, status) uuid_$t *object_interface; lb_$lookup_handle_t *lookup_handle; unsigned long max_results; unsigned long *num_results; lb_$entry_t results [ ]; status_$t *status;
The lb_$lookup_interface routine returns GLB database entries whose fields in the object_interface parameters match the specified interface. It returns information about all replicas of all objects that can be accessed through that interface.
The lb_$lookup_interface routine cannot return more than the number of matching entries specified by the max_results parameter at one time. The lookup_handle parameter directs this routine to do sequential lookup calls to find all matching entries.
Notes:
- The Location Broker does not prevent modification of the database between lookup calls, which can cause the locations of entries relative to a lookup_handle value to change. If multiple calls are made to find all matching results in the database, the returned information may skip or duplicate entries from the database.
- It is also possible for the results of a single lookup call to skip or duplicate entries. This can occur if the size of the results exceeds the size of a remote procedure call (RPC) packet (64KB).
Input |
---|
Input/Output |
---|
Output |
---|
To look up information in the GLB database about a matrix multiplication interface, enter:
lb_$lookup_interface (&matrix_if_id, &lookup_handle, results_array_size, &num_results, &matrix_if_results_array, &status);
This Library Routine is part of Network Computing System in Network Support Facilities in Base Operating System (BOS) Runtime.
Remote Procedure Call (RPC) Runtime Library (NCS) in AIX Version 4.3 Communications Programming Concepts.