From 1d3209ab83aac3089f15e00934e922d222a4ecf0 Mon Sep 17 00:00:00 2001 From: jkoshy Date: Thu, 9 Jun 2005 19:45:09 +0000 Subject: MFP4: - Implement sampling modes and logging support in hwpmc(4). - Separate MI and MD parts of hwpmc(4) and allow sharing of PMC implementations across different architectures. Add support for P4 (EMT64) style PMCs to the amd64 code. - New pmcstat(8) options: -E (exit time counts) -W (counts every context switch), -R (print log file). - pmc(3) API changes, improve our ability to keep ABI compatibility in the future. Add more 'alias' names for commonly used events. - bug fixes & documentation. --- lib/libpmc/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'lib/libpmc/Makefile') diff --git a/lib/libpmc/Makefile b/lib/libpmc/Makefile index 7d24d85..c2560bd 100644 --- a/lib/libpmc/Makefile +++ b/lib/libpmc/Makefile @@ -2,12 +2,12 @@ LIB= pmc -SRCS= libpmc.c -INCS= pmc.h +SRCS= libpmc.c pmclog.c +INCS= pmc.h pmclog.h WARNS?= 6 -MAN= pmc.3 +MAN= pmc.3 pmclog.3 MLINKS+= \ pmc.3 pmc_allocate.3 \ @@ -19,6 +19,7 @@ MLINKS+= \ pmc.3 pmc_disable.3 \ pmc.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 \ pmc.3 pmc_name_of_capability.3 \ @@ -38,6 +39,13 @@ MLINKS+= \ pmc.3 pmc_stop.3 \ pmc.3 pmc_width.3 \ pmc.3 pmc_write.3 \ + pmc.3 pmc_writelog.3 \ pmc.3 pmc_x86_get_msr.3 +MLINKS+= \ + pmclog.3 pmclog_open.3 \ + pmclog.3 pmclog_close.3 \ + pmclog.3 pmclog_feed.3 \ + pmclog.3 pmclog_read.3 + .include -- cgit v1.1