scds_get_current_method_name(3HA)
scds_get_resource_group_name(3HA)
scds_get_resource_type_name(3HA)
scds_get_rg_hostnames_zone(3HA)
scha_cluster_getlogfacility(3HA)
- resource type information access functions.
cc [flags…] -I /usr/cluster/include file -L /usr/cluster/lib -l scha #include <scha.h> scha_err_t scha_resourcetype_open(const char *rtname, scha_resourcetype_t *handle);
scha_err_t scha_resourcetype_close(scha_resourcetype_t handle);
scha_err_t scha_resourcetype_get(scha_resourcetype_t handle, const char *tag...);
You use the scha_resourcetype_open(), scha_resourcetype_get(), and scha_resourcetype_close() functions to access information about a resource type that is used by the Resource Group Manager (RGM) cluster facility.
scha_resourcetype_open() initializes access of the resource type and returns a handle to be used by scha_resourcetype_get().
The rtname argument of scha_resourcetype_open() names the resource type to be accessed.
The handle argument is the address of a variable to hold the value returned from the function call.
scha_resourcetype_get() accesses resource type information as indicated by the tag argument. The tag argument should be a string value defined by a macro in the scha_tags.h header file. Arguments following the tag depend on the value of tag.
An additional argument following the tag may be needed to indicate a cluster node from which the information is to be retrieved, or other information specific to the tag. The last argument in the argument list is to be of a type suitable type to hold the information indicated by tag. This is the "out" argument for the resource type information. No value is returned for the “out” parameter if the function fails. Memory that is allocated to hold information returned by scha_resourcetype_get() remains intact until scha_resourcetype_close() is called on the handle that is used for scha_resourcetype_get().
scha_resourcetype_close() takes a handle argument that is returned from a previous call to scha_resourcetype_open(). This function invalidates the handle and frees memory allocated to return values to scha_resourcetype_get() calls that were made with the handle. Note that memory, if needed to return a value, is allocated for each "get" call. Space allocated to return a value in one call is not overwritten and reused by subsequent calls.
Macros defined in scha_tags.h that might be used as tag arguments to scha_resourcetype_get() follow. The type of the output argument and any additional arguments are indicated. Structure and enum types are described in scha_calls(3HA).
The following macros name resource type properties. The value of the named property of the resource's type is output.
Note - optag arguments, such as SCHA_API_VERSION and SCHA_BOOT, are not case sensitive. You can use any combination of uppercase and lowercase letters when you specify optag arguments.
The output argument is of type int*.
The output argument is of type char **.
The output argument is of type boolean_t *.
The output argument is of type char **.
The output argument is of type boolean_t *.
The output argument is of type char **.
The output argument is of type scha_initnodes_flag_t *.
The output argument is of type scha_str_array_t **.
The output argument is of type boolean_t *.
The output argument is of type boolean_t *.
The output argument is of type char **.
The output argument is of type char **.
The output argument is of type char **.
The output argument is of type boolean_t *.
The output argument is of type scha_str_array_t **.
The output argument is of type char **.
The output argument is of type char **.
The output argument is of type boolean_t *.
The output argument is of type scha_str_array_t**.
The output argument is of type char **.
The output argument is of type char **.
The output argument is of type boolean_t *.
The output argument is of type char **.
The output argument is of type boolean_t *.
The output argument is of type char **.
The output argument is of type char **.
The output argument is of type char **.
The output argument is of type char **.
These functions return the following values:
The function succeeded.
The function failed.
The function succeeded.
See the scha_calls(3HA) man page for a description of other error codes.
Include file
Library
See attributes(5) for descriptions of the following attributes:
|
scha_resource_get(1HA), scha_calls(3HA), scha_strerror(3HA), scha_strerror_i18n(3HA), attributes(5), rt_properties(5)