PMDADAEMON(3) | Library Functions Manual | PMDADAEMON(3) |
pmdaDaemon - initialize the PMDA to run as a daemon
#include <pcp/pmapi.h>
#include <pcp/pmda.h>
void pmdaDaemon(pmdaInterface *dispatch, int interface, const
char *name, int domain, const
char *logfile, const char *helptext);
cc ... -lpcp_pmda -lpcp
pmdaDaemon initializes the pmdaInterface structure to use the interface extensions assuming the PMDA(3) is to be run as a daemon. The pmdaInterface structure is initialized with:
The callbacks are initialized to pmdaProfile(3), pmdaFetch(3), pmdaDesc(3), pmdaText(3), pmdaInstance(3) and pmdaStore(3).
The PMDA must be using PMDA_INTERFACE_2 or later.
Once pmdaDaemon has been called, it is expected that the pmdaInterface structure pointed to by dispatch will remain accessible to the routines in libpcp_pmda (not reclaimed off the stack, not freed or oherwise released, etc.). If the caller needs to move or relocate the pmdaInterface structure for any reason, then after the move pmdaInterfaceMoved(3) must be called to resestablish the internal integrity of the pmdaInterface structure at the new location before any other routine in libpcp_pmda is called.
PMAPI(3), PMDA(3), pmdaDSO(3), pmdaGetOpt(3), pmdaInterfaceMoved(3) and pmdaText(3).
PCP | Performance Co-Pilot |