pmErrStr - Man Page

convert a PMAPI error code into a string

C Synopsis

#include <pcp/pmapi.h>

const char *pmErrStr(int code);
char *pmErrStr_r(int code, char *buf, int buflen);

cc ... -lpcp

Description

Translate an error code into a text string, suitable for generating a diagnostic message. The pmErrStr_r function does the same, but stores the result in a user-supplied buffer buf of length buflen, which should have room for at least PM_MAXERRMSGLEN bytes.

By convention, all error codes are negative. The small values are assumed to be negated versions of the Unix error codes as defined in <errno.h> and the strings returned are as per strerror(3). The larger, negative error codes are Performance Metrics Application Programming Interface (PMAPI) error conditions and pmErrStr(3) returns an appropriate PMAPI error string, as determined by code.

Notes

pmErrStr returns a pointer to a static buffer, so the returned value is only valid until the next call to pmErrStr and hence is not thread-safe. Multi-threaded applications should use pmErrStr_r instead.

See Also

pmerr(1), PMAPI(3) and perror(3).

Referenced By

PCPIntro(3), pmAF(3), PMAPI(3), __pmCleanMapDir(3), pmdaCache(3), pmdaEventQueue(3), pmdaHelp(3), pmdaRootConnect(3), pmDerivedControl(3), pmDiscoverSetup(3), pmerr(1), pmFetch(3), pmGetHostName(3), pmiErrStr(3), pmjsonGet(3), pmLoadDerivedConfig(3), __pmLogWriteMark(3), pmLookupLabels(3), PMNS(5), pmprintf(3), pmprobe(1), __pmProcessAddArg(3), __pmProcessPipe(3), pmRecord(3), pmSetProcessIdentity(3), pmUnpackEventRecords(3).

The man page pmErrStr_r(3) is an alias of pmErrStr(3).

PCP Performance Co-Pilot