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

The markings match glibc markings.

printf:    MT-Safe locale
fprintf:   MT-Safe locale
sprintf:   MT-Safe locale
snprintf:  MT-Safe locale
vprintf:   MT-Safe locale
vfprintf:  MT-Safe locale
vsprintf:  MT-Safe locale
vsnprintf: 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:21 +08:00 committed by Michael Kerrisk
parent 80563762a2
commit 1567901b96
1 changed files with 23 additions and 0 deletions

View File

@ -822,6 +822,29 @@ A \(aq%\(aq is written.
No argument is converted.
The complete conversion
specification is \(aq%%\(aq.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
.TS
allbox;
lbw23 lb lb
l l l.
Interface Attribute Value
T{
.BR printf (),
.BR fprintf (),
.br
.BR sprintf (),
.BR snprintf (),
.br
.BR vprintf (),
.BR vfprintf (),
.br
.BR vsprintf (),
.BR vsnprintf ()
T} Thread safety MT-Safe locale
.TE
.SH CONFORMING TO
The
.BR fprintf (),