Document pthread_create().

Reviewed by:	jasone
This commit is contained in:
Chris Costello 1999-12-16 22:36:54 +00:00
parent e6a5e33c6b
commit ddb9c6cd10

View File

@ -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