|
NAMEpmc_event_names_of_class —
return a list of event names supported by a PMC class
LIBRARYPerformance Counters Library (libpmc, -lpmc)SYNOPSIS#include <pmc.h>
int
DESCRIPTIONFunctionpmc_event_names_of_class () retrieves the
hardware event names supported by the class of PMC hardware specified by
argument cl.
It returns an array of const char * pointers to names of events supported by the specified class of PMC hardware. The location pointed to by argument nevents is set to the number of event names returned. The returned array is allocated using malloc(3). RETURN VALUESThepmc_event_names_of_class () function returns the
value 0 if successful; otherwise the value -1 is returned and
the global variable errno is set to indicate the error.
ERRORSA call topmc_event_names_of_class () may fail with the
following errors:
SEE ALSOpmc(3), hwpmc(4)
Visit the GSP FreeBSD Man Page Interface. |