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

The markings match glibc markings.

wprintf:   MT-Safe locale
fwprintf:  MT-Safe locale
swprintf:  MT-Safe locale
vwprintf:  MT-Safe locale
vfwprintf: MT-Safe locale
vswprintf: MT-Safe locale

Signed-off-by: Zeng Linggang <zenglg.jy@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Zeng Linggang 2015-04-08 10:56:28 +08:00 committed by Michael Kerrisk
parent 652318eefe
commit 9534c08c80
1 changed files with 20 additions and 0 deletions

View File

@ -208,6 +208,26 @@ case of the functions
and
.BR vswprintf ().
They return \-1 when an error occurs.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
.TS
allbox;
lbw24 lb lb
l l l.
Interface Attribute Value
T{
.BR wprintf (),
.BR fwprintf (),
.br
.BR swprintf (),
.BR vwprintf (),
.br
.BR vfwprintf (),
.BR vswprintf ()
T} Thread safety MT-Safe locale
.TE
.SH CONFORMING TO
C99.
.SH NOTES