aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2009-02-07 22:23:45 +1300
committerMichael Kerrisk <mtk.manpages@gmail.com>2009-02-09 12:29:02 +1300
commitf6d908ca5f4676ec4a2ccee788abdb02e4f1cbd4 (patch)
treea491baa012403d922e2f86a7833fc230ec3a5459
parent3f97f5a8d1b04e983663d8d749aad0c64dbd0ed1 (diff)
downloadman-pages-f6d908ca5f4676ec4a2ccee788abdb02e4f1cbd4.tar.gz
pthread_getcpuclockid.3: SYNOPSIS: fix type of 'thread'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man3/pthread_getcpuclockid.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/pthread_getcpuclockid.3 b/man3/pthread_getcpuclockid.3
index 6a90688390..cc2db052b9 100644
--- a/man3/pthread_getcpuclockid.3
+++ b/man3/pthread_getcpuclockid.3
@@ -21,7 +21,7 @@
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
-.TH PTHREAD_GETCPUCLOCKID 3 2009-01-13 "Linux" "Linux Programmer's Manual"
+.TH PTHREAD_GETCPUCLOCKID 3 2009-02-08 "Linux" "Linux Programmer's Manual"
.SH NAME
pthread_getcpuclockid \- retrieve ID of a thread's CPU time clock
.SH SYNOPSIS
@@ -29,7 +29,7 @@ pthread_getcpuclockid \- retrieve ID of a thread's CPU time clock
.B #include <pthread.h>
.B #include <time.h>
-.BI "int pthread_getcpuclockid(pthread_t *" thread ", clockid_t *" clock_id);
+.BI "int pthread_getcpuclockid(pthread_t " thread ", clockid_t *" clock_id);
.sp
Compile and link with \fI\-pthread\fP.
.SH DESCRIPTION