diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2007-11-23 12:30:55 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2007-11-23 12:30:55 +0000 |
commit | c4ceee25beb06507f611a0c053be816a43223c92 (patch) | |
tree | a3eaff8b580e17bb276341a4892f7780599507b2 /lib/libpmc | |
parent | e7b2628f79e9fbf56063be596a65886c71e721f0 (diff) | |
download | FreeBSD-src-c4ceee25beb06507f611a0c053be816a43223c92.zip FreeBSD-src-c4ceee25beb06507f611a0c053be816a43223c92.tar.gz |
Describe pmc_event_names_of_class() in its own manual page.
Diffstat (limited to 'lib/libpmc')
-rw-r--r-- | lib/libpmc/Makefile | 4 | ||||
-rw-r--r-- | lib/libpmc/pmc_event_names_of_class.3 | 75 |
2 files changed, 77 insertions, 2 deletions
diff --git a/lib/libpmc/Makefile b/lib/libpmc/Makefile index 5139770..b1b35a4 100644 --- a/lib/libpmc/Makefile +++ b/lib/libpmc/Makefile @@ -7,7 +7,8 @@ INCS= pmc.h pmclog.h WARNS?= 6 -MAN= pmc.3 pmc_allocate.3 pmc_disable.3 pmclog.3 +MAN= pmc.3 pmc_allocate.3 pmc_disable.3 pmc_event_names_of_class.3 +MAN+= pmclog.3 MLINKS+= \ pmc_allocate.3 pmc_release.3 \ @@ -17,7 +18,6 @@ MLINKS+= \ pmc.3 pmc_cpuinfo.3 \ pmc.3 pmc_detach.3 \ pmc_disable.3 pmc_enable.3 \ - pmc.3 pmc_event_names_of_class.3 \ pmc.3 pmc_flush_logfile.3 \ pmc.3 pmc_get_driver_stats.3 \ pmc.3 pmc_init.3 \ diff --git a/lib/libpmc/pmc_event_names_of_class.3 b/lib/libpmc/pmc_event_names_of_class.3 new file mode 100644 index 0000000..fc1c63c --- /dev/null +++ b/lib/libpmc/pmc_event_names_of_class.3 @@ -0,0 +1,75 @@ +.\" Copyright (c) 2007 Joseph Koshy. All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" This software is provided by Joseph Koshy ``as is'' and +.\" any express or implied warranties, including, but not limited to, the +.\" implied warranties of merchantability and fitness for a particular purpose +.\" are disclaimed. in no event shall Joseph Koshy be liable +.\" for any direct, indirect, incidental, special, exemplary, or consequential +.\" damages (including, but not limited to, procurement of substitute goods +.\" or services; loss of use, data, or profits; or business interruption) +.\" however caused and on any theory of liability, whether in contract, strict +.\" liability, or tort (including negligence or otherwise) arising in any way +.\" out of the use of this software, even if advised of the possibility of +.\" such damage. +.\" +.\" $FreeBSD$ +.\" +.Dd November 23, 2007 +.Os +.Dt PMC_EVENT_NAMES_OF_CLASS 3 +.Sh NAME +.Nm pmc_event_names_of_class +.Nd return a list of event names supported by a PMC class. +.Sh LIBRARY +.Lb libpmc +.Sh SYNOPSIS +.In pmc.h +.Ft int +.Fo pmc_event_names_of_class +.Fa "enum pmc_class cl" +.Fa "const char ***eventnames" +.Fa "int *nevents" +.Fc +.Sh DESCRIPTION +Function +.Fn pmc_event_names_of_class +retrieves the hardware event names supported by the class of PMC hardware +specified by argument +.Fa cl . +.Pp +It returns an array of +.Vt "const char *" +pointers to names of events supported by the specified class of PMC +hardware. +The location pointed to by argument +.Fa nevents +is set to the number of event names returned. +.Pp +The returned array is allocated using +.Xr malloc 3 . +.Sh RETURN VALUES +.Rv -std pmc_event_names_of_class +.Sh ERRORS +A call to +.Fn pmc_event_names_of_class +may fail with the following errors: +.Bl -tag -width Er +.It Bq Er EINVAL +Argument +.Fa cl +was invalid. +.It Bq Er ENOMEM +Allocation of a memory arena to hold the result failed. +.El +.Sh SEE ALSO +.Xr pmc 3 , +.Xr hwpmc 4 |