strsep.3: ATTRIBUTES: Note function that is thread-safe

The function strsep() is 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-02-25 14:59:59 +08:00 committed by Michael Kerrisk
parent 4cdb057777
commit 178c91f42a
1 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,7 @@
.\" Modified Mon Jan 20 12:04:18 1997 by Andries Brouwer (aeb@cwi.nl)
.\" Modified Tue Jan 23 20:23:07 2001 by Andries Brouwer (aeb@cwi.nl)
.\"
.TH STRSEP 3 2014-01-04 "GNU" "Linux Programmer's Manual"
.TH STRSEP 3 2014-02-25 "GNU" "Linux Programmer's Manual"
.SH NAME
strsep \- extract token from string
.SH SYNOPSIS
@ -76,6 +76,11 @@ The
function returns a pointer to the token,
that is, it returns the original value of
.IR *stringp .
.SH ATTRIBUTES
.SS Multithreading (see pthreads(7))
The
.BR strsep ()
function is thread-safe.
.SH CONFORMING TO
4.4BSD.
.SH NOTES