]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
pthread_exit.3: Fix error in DESCRIPTION: s/pthread_create/pthread_exit/
authorMichael Kerrisk <mtk.manpages@gmail.com>
Sun, 29 Mar 2009 18:17:27 +0000 (07:17 +1300)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Sun, 29 Mar 2009 18:17:27 +0000 (07:17 +1300)
Reported-by: Chunming Chang <cchang@aerohive.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man3/pthread_exit.3

index e61671406f2425fe7de0a4e6d50feb07b43782c4..8991acd172707cd5566ee64ae59aa528ca04bfa6 100644 (file)
@@ -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_EXIT 3 2008-10-30 "Linux" "Linux Programmer's Manual"
+.TH PTHREAD_EXIT 3 2009-03-30 "Linux" "Linux Programmer's Manual"
 .SH NAME
 pthread_exit \- terminate calling thread
 .SH SYNOPSIS
@@ -79,7 +79,7 @@ using the function's return value as the thread's exit status.
 
 To allow other threads to continue execution,
 the main thread should terminate by calling
-.BR pthread_create ()
+.BR pthread_exit ()
 rather than
 .BR exit (3).