From f2d15dc910aaaaf87d67c079446d7969bfacccbe Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Thu, 12 Dec 2013 16:45:03 +1300 Subject: [PATCH] perf_event_open.2: ffix + tstamp Signed-off-by: Michael Kerrisk --- man2/perf_event_open.2 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2 index 4de02673b..8b5b59a4d 100644 --- a/man2/perf_event_open.2 +++ b/man2/perf_event_open.2 @@ -24,7 +24,7 @@ .\" This document is based on the perf_event.h header file, the .\" tools/perf/design.txt file, and a lot of bitter experience. .\" -.TH PERF_EVENT_OPEN 2 2013-11-08 "Linux" "Linux Programmer's Manual" +.TH PERF_EVENT_OPEN 2 2013-12-12 "Linux" "Linux Programmer's Manual" .SH NAME perf_event_open \- set up performance monitoring .SH SYNOPSIS @@ -81,21 +81,21 @@ and .I cpu arguments allow specifying which process and CPU to monitor: .TP -.BR pid==0 " and " cpu==\-1 +.BR "pid == 0" " and " "cpu == \-1" This measures the current process/thread on any CPU. .TP -.BR pid==0 " and " cpu>=0 +.BR "pid == 0" " and " "cpu >= 0" This measures the current process/thread only when running on the specified CPU. .TP -.BR pid>0 " and " cpu==\-1 +.BR "pid > 0" " and " "cpu == \-1" This measures the specified process/thread on any CPU. .TP -.BR pid>0 " and " cpu>=0 +.BR "pid > 0" " and " "cpu >= 0" This measures the specified process/thread only when running on the specified CPU. .TP -.BR pid==\-1 " and " cpu>=0 +.BR "pid == \-1" " and " "cpu >= 0" This measures all processes/threads on the specified CPU. Measurements such as this require the .B CAP_SYS_ADMIN