aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2008-11-14 11:20:56 -0500
committerMichael Kerrisk <mtk.manpages@gmail.com>2008-11-25 20:54:00 -0500
commit188cf22e227f02c89dc97e3ddacac22525f22d89 (patch)
tree7a153a77f57608c82058a61177c0c4745c27d18e /man3
parent532f0406fee25b769f42c4bc1b1619aeb08e3d27 (diff)
downloadman-pages-188cf22e227f02c89dc97e3ddacac22525f22d89.tar.gz
pthread_create.3: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man3')
-rw-r--r--man3/pthread_create.32
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/pthread_create.3 b/man3/pthread_create.3
index 83ad96a561..b1ce3c2bd8 100644
--- a/man3/pthread_create.3
+++ b/man3/pthread_create.3
@@ -248,7 +248,7 @@ Joined with thread 3; returned value was SERVUS
do { perror(msg); exit(EXIT_FAILURE); } while (0)
struct thread_info { /* Used as argument to thread_start() */
- pthread_t thread_id; /* ID returned by pthread_create */
+ pthread_t thread_id; /* ID returned by pthread_create() */
int thread_num; /* Application\-defined thread # */
char *argv_string; /* From command\-line argument */
};