perfmonctl.2: Fix argument types for PFM_WRITE_PMCS, PFM_WRITE_PMDS, PFM_READ_PMDS

The types that were being used don't exist!

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2013-02-09 21:36:15 +01:00
parent 65d669f4b0
commit f25e7c8ecc
1 changed files with 3 additions and 3 deletions

View File

@ -90,21 +90,21 @@ system call.
.\" pfm_write_pmcs()
set PMC registers
.nf
.BI "perfmonctl(int " fd ", PFM_WRITE_PMCS, pfarg_pmc_t *" pmcs ", n);
.BI "perfmonctl(int " fd ", PFM_WRITE_PMCS, pfarg_reg_t *" pmcs ", n);
.fi
.TP
.B PFM_WRITE_PMDS
.\" pfm_write_pmds()
set PMD registers
.nf
.BI "perfmonctl(int " fd ", PFM_WRITE_PMDS, pfarg_pmd_t *" pmds ", n);
.BI "perfmonctl(int " fd ", PFM_WRITE_PMDS, pfarg_reg_t *" pmds ", n);
.fi
.TP
.B PFM_READ_PMDS
.\" pfm_read_pmds()
read PMD registers
.nf
.BI "perfmonctl(int " fd ", PFM_READ_PMDS, pfarg_pmd_t *" pmds ", n);
.BI "perfmonctl(int " fd ", PFM_READ_PMDS, pfarg_reg_t *" pmds ", n);
.fi
.TP
.B PFM_START