OSDN Git Service

LDP: Update original to LDP v3.77
[linuxjm/LDP_man-pages.git] / original / man3 / pthread_tryjoin_np.3
index 483432c..080357d 100644 (file)
@@ -23,7 +23,7 @@
 .\" the source, must acknowledge the copyright and authors of this work.
 .\" %%%LICENSE_END
 .\"
-.TH PTHREAD_TRYJOIN_NP 3 2010-09-10 "Linux" "Linux Programmer's Manual"
+.TH PTHREAD_TRYJOIN_NP 3 2015-01-10 "Linux" "Linux Programmer's Manual"
 .SH NAME
 pthread_tryjoin_np, pthread_timedjoin_np \- try to join with a
 terminated thread
@@ -97,12 +97,20 @@ can in addition fail with the following error:
 had not yet terminated at the time of the call.
 .PP
 .BR pthread_timedjoin_np ()
-can in addition fail with the following error:
+can in addition fail with the following errors:
 .TP
 .BR ETIMEDOUT
 The call timed out before
 .I thread
 terminated.
+.TP
+.BR EINVAL
+.I abstime
+value is invalid
+.RI ( tv_sec
+is less than 0 or
+.IR tv_nsec
+is greater than 1e9).
 .PP
 .BR pthread_timedjoin_np ()
 never returns the error
@@ -138,7 +146,7 @@ The following code waits to join for up to 5 seconds:
 .BR pthread_join (3),
 .BR pthreads (7)
 .SH COLOPHON
-This page is part of release 3.76 of the Linux
+This page is part of release 3.77 of the Linux
 .I man-pages
 project.
 A description of the project,