RSiCreateHotSet or RSiCreateHotSetx Subroutine

Purpose

Creates an empty hotset on the remote host identified by the argument.

Library

RSI Library (libSpmi.a)

Syntax

#include sys/Rsi.h
struct SpmiHotSet *RSiCreateHotSet(rhandle)
RSiHandle rhandle;
struct SpmiHotSet *RSiCreateHotSetx(rhandlex)
RSiHandlex rhandlex;

Description

The RSiCreateHotSet subroutine allocates an SpmiStatSet structure. The structure is initialized as an empty SpmiHotSet and a pointer to the SpmiHotSet structure is returned.

The SpmiHotSet structure provides the anchor point to a set of peer statistics and must exist before the RSiAddSetHot or RSiAddSetHotx subroutine can be successfully called.

This subroutine is part of the Performance Toolbox for AIX® licensed product.

Parameters

rhandle
Must point to a valid RSiHandle handle, which was previously initialized by the RSiOpen subroutine.
rhandlex
Must be an RSiHandlex handle, which was previously initialized by the RSiOpenx subroutine.

Return Values

The RSiCreateHotSet or RSiCreateHotSetx subroutine returns a pointer to a structure of type SpmiHotSet if successful. If unsuccessful, the subroutine returns a NULL value.

Error Codes

All Remote Statistic Interface (RSI) subroutines use external variables to provide error information. To access these variables, an application program must define the following external variables:

  • extern char RSiEMsg[];
  • extern int RSiErrno;

If the subroutine returns without an error, the RSiErrno variable is set to RSiOkay and the RSiEMsg character array is empty. If an error is detected, the RSiErrno variable returns an error code, as defined in the enum RSiErrorType.

Files

Item Description
/usr/include/sys/Rsi.h Declares the subroutines, data structures, handles, and macros that an application program can use to access the RSI.