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

The functions mempcpy() and wmempcpy() 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-03-18 01:14:47 +00:00 committed by Michael Kerrisk
parent 69351e5a42
commit a400599296
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,7 @@
.\" Heavily based on glibc infopages, copyright Free Software Foundation
.\"
.\" aeb, 2003, polished a little
.TH MEMPCPY 3 2008-08-12 "GNU" "Linux Programmer's Manual"
.TH MEMPCPY 3 2014-03-18 "GNU" "Linux Programmer's Manual"
.SH NAME
mempcpy, wmempcpy \- copy memory area
.SH SYNOPSIS
@ -57,6 +57,13 @@ wide characters.
.SH VERSIONS
.BR mempcpy ()
first appeared in glibc in version 2.1.
.SH ATTRIBUTES
.SS Multithreading (see pthreads(7))
The
.BR mempcpy ()
and
.BR wmempcpy ()
functions are thread-safe.
.SH CONFORMING TO
This function is a GNU extension.
.SH EXAMPLE