pthread_attr_setdetachstate.3: ATTRIBUTES: Note functions that are thread-safe

The functions pthread_attr_setdetachstate() and
pthread_attr_getdetachstate() are thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Peng Haitao 2014-04-14 12:04:42 +08:00 committed by Michael Kerrisk
parent 7eea6fc323
commit 681f627eee
1 changed files with 8 additions and 1 deletions

View File

@ -23,7 +23,7 @@
.\" the source, must acknowledge the copyright and authors of this work.
.\" %%%LICENSE_END
.\"
.TH PTHREAD_ATTR_SETDETACHSTATE 3 2010-02-03 "Linux" "Linux Programmer's Manual"
.TH PTHREAD_ATTR_SETDETACHSTATE 3 2014-04-14 "Linux" "Linux Programmer's Manual"
.SH NAME
pthread_attr_setdetachstate, pthread_attr_getdetachstate \-
set/get detach state attribute in thread attributes object
@ -84,6 +84,13 @@ can fail with the following error:
.B EINVAL
An invalid value was specified in
.IR detachstate .
.SH ATTRIBUTES
.SS Multithreading (see pthreads(7))
The
.BR pthread_attr_setdetachstate ()
and
.BR pthread_attr_getdetachstate ()
functions are thread-safe.
.SH CONFORMING TO
POSIX.1-2001.
.SH NOTES