aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorChris Costello <chris@FreeBSD.org>1999-12-16 22:36:54 +0000
committerChris Costello <chris@FreeBSD.org>1999-12-16 22:36:54 +0000
commitddb9c6cd1020505bccf9a35747dcecd0f93681ad (patch)
treeab316b34bebbd3ab251e4a958c9ae9596fb19e7d /share
parente6a5e33c6b7713d446d7c29ab63b2e74ce785c86 (diff)
downloadsrc-ddb9c6cd1020505bccf9a35747dcecd0f93681ad.tar.gz
src-ddb9c6cd1020505bccf9a35747dcecd0f93681ad.zip
Document pthread_create().
Reviewed by: jasone
Notes
Notes: svn path=/head/; revision=54702
Diffstat (limited to 'share')
-rw-r--r--share/man/man3/pthread.32
1 files changed, 2 insertions, 0 deletions
diff --git a/share/man/man3/pthread.3 b/share/man/man3/pthread.3
index 4e6e56b260a4..35a457cab3ce 100644
--- a/share/man/man3/pthread.3
+++ b/share/man/man3/pthread.3
@@ -73,6 +73,8 @@ Compares two thread IDs.
Terminates the calling thread.
.It int Fn pthread_join "pthread_t thread" "void **value_ptr"
Causes the calling thread to wait for the termination of the specified thread.
+.It int Fn pthread_cancel "pthread_t thread"
+Cancels execution of a thread.
.It int Fn pthread_once "pthread_once_t *once_control" "void (*init_routine)(void)"
Calls an initialization routine once.
.It pthread_t Fn pthread_self void