All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] atexit.3: ATTRIBUTES: Note functions that is thread-safe
@ 2015-04-29 10:09 Zeng Linggang
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  0 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- atexit: MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/atexit.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/atexit.3 b/man3/atexit.3
index 13ffacf..be1ec21 100644
--- a/man3/atexit.3
+++ b/man3/atexit.3
@@ -73,6 +73,19 @@ The
 .BR atexit ()
 function returns the value 0 if successful; otherwise
 it returns a nonzero value.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR atexit ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
 .SH NOTES
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] bsearch.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-2-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] ftw.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
                     ` (8 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- bsearch: MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/bsearch.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/bsearch.3 b/man3/bsearch.3
index 22c2ee3..ac0b1f4 100644
--- a/man3/bsearch.3
+++ b/man3/bsearch.3
@@ -74,6 +74,19 @@ function returns a pointer to a matching member of the
 array, or NULL if no match is found.
 If there are multiple elements that
 match the key, the element returned is unspecified.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR bsearch ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 SVr4, 4.3BSD, POSIX.1-2001, C89, C99.
 .SH EXAMPLE
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] ftw.3: ATTRIBUTES: Note functions that are thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] bsearch.3: " Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-3-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] iconv_close.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
                     ` (7 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
markings of functions in glibc are:
- nftw: MT-Safe cwd
- ftw:  MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/ftw.3 | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/man3/ftw.3 b/man3/ftw.3
index b24cfd6..b421c00 100644
--- a/man3/ftw.3
+++ b/man3/ftw.3
@@ -350,6 +350,22 @@ and that value is returned as the result of
 .SH VERSIONS
 .BR nftw ()
 is available under glibc since version 2.1.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR nftw ()
+T}	Thread safety	MT-Safe cwd
+T{
+.BR ftw ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 POSIX.1-2001, POSIX.1-2008, SVr4, SUSv1.
 POSIX.1-2008 marks
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] iconv_close.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] bsearch.3: " Zeng Linggang
  2015-04-29 10:09   ` [PATCH] ftw.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-4-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] inet_ntop.3: " Zeng Linggang
                     ` (6 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- iconv_close: MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/iconv_close.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/iconv_close.3 b/man3/iconv_close.3
index 6b80be0..9634f08 100644
--- a/man3/iconv_close.3
+++ b/man3/iconv_close.3
@@ -36,6 +36,19 @@ In case of error, it sets
 and returns \-1.
 .SH VERSIONS
 This function is available in glibc since version 2.1.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR iconv_close ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 UNIX98, POSIX.1-2001.
 .SH SEE ALSO
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] inet_ntop.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (2 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] iconv_close.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-5-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] lsearch.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
                     ` (5 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- inet_ntop: MT-Safe locale

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/inet_ntop.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/inet_ntop.3 b/man3/inet_ntop.3
index 5144344..5cd8c83 100644
--- a/man3/inet_ntop.3
+++ b/man3/inet_ntop.3
@@ -97,6 +97,19 @@ was not a valid address family.
 .B ENOSPC
 The converted address string would exceed the size given by
 .IR size .
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR inet_ntop ()
+T}	Thread safety	MT-Safe locale
+.TE
+
 .SH CONFORMING TO
 POSIX.1-2001.
 Note that RFC\ 2553 defines a prototype where the last argument
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] lsearch.3: ATTRIBUTES: Note functions that are thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (3 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] inet_ntop.3: " Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-6-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] on_exit.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
                     ` (4 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
markings of functions in glibc are:
- lfind:   MT-Safe
- lsearch: MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/lsearch.3 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/man3/lsearch.3 b/man3/lsearch.3
index 3b4637d..f192960 100644
--- a/man3/lsearch.3
+++ b/man3/lsearch.3
@@ -77,6 +77,20 @@ NULL if no match is found.
 returns a pointer to
 a matching member of the array, or to the newly added member if no
 match is found.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lbw18 lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR lfind (),
+.BR lsearch ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 SVr4, 4.3BSD, POSIX.1-2001.
 Present in libc since libc-4.6.27.
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] on_exit.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (4 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] lsearch.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-7-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] putpwent.3: " Zeng Linggang
                     ` (3 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- on_exit: MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/on_exit.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/on_exit.3 b/man3/on_exit.3
index 31d2b82..2502f13 100644
--- a/man3/on_exit.3
+++ b/man3/on_exit.3
@@ -78,6 +78,19 @@ The
 .BR on_exit ()
 function returns the value 0 if successful; otherwise
 it returns a nonzero value.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR on_exit ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 This function comes from SunOS 4, but is also present in glibc.
 It no longer occurs in Solaris (SunOS 5).
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] putpwent.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (5 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] on_exit.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-8-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] qsort.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
                     ` (2 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- putpwent: MT-Safe locale

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/putpwent.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/putpwent.3 b/man3/putpwent.3
index 3bcb09d..043aa50 100644
--- a/man3/putpwent.3
+++ b/man3/putpwent.3
@@ -79,6 +79,19 @@ is set to indicate the cause.
 .TP
 .B EINVAL
 Invalid (NULL) argument given.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR putpwent ()
+T}	Thread safety	MT-Safe locale
+.TE
+
 .SH CONFORMING TO
 SVr4.
 .SH SEE ALSO
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] qsort.3: ATTRIBUTES: Note functions that are thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (6 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] putpwent.3: " Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-9-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 10:09   ` [PATCH] sysconf.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
  2015-04-29 19:19   ` [PATCH] atexit.3: " Michael Kerrisk (man-pages)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

qsort() matches glibc marking.
>From research, We think qsort_r() is thread-safe. But, there
is not marking of qsort_r() in glibc document.
- qsort:   MT-Safe
- qsort_r: MT-Safe

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/qsort.3 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/man3/qsort.3 b/man3/qsort.3
index 442ae15..286263a 100644
--- a/man3/qsort.3
+++ b/man3/qsort.3
@@ -97,6 +97,20 @@ functions return no value.
 .SH VERSIONS
 .BR qsort_r ()
 was added to glibc in version 2.8.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lbw18 lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR qsort (),
+.BR qsort_r ()
+T}	Thread safety	MT-Safe
+.TE
+
 .SH CONFORMING TO
 The
 .BR qsort ()
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH] sysconf.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (7 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] qsort.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
@ 2015-04-29 10:09   ` Zeng Linggang
       [not found]     ` <1430302166-1700-10-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
  2015-04-29 19:19   ` [PATCH] atexit.3: " Michael Kerrisk (man-pages)
  9 siblings, 1 reply; 20+ messages in thread
From: Zeng Linggang @ 2015-04-29 10:09 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

The marking matches glibc marking.
The marking of functions in glibc is:
- sysconf: MT-Safe env

Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
---
 man3/sysconf.3 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/man3/sysconf.3 b/man3/sysconf.3
index 99a2c41..276629f 100644
--- a/man3/sysconf.3
+++ b/man3/sysconf.3
@@ -324,6 +324,19 @@ is not changed.
 In the case of options, a positive value is returned if a queried option
 is available, and \-1 if it is not.
 In the case of limits, \-1 means that there is no definite limit.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface	Attribute	Value
+T{
+.BR sysconf ()
+T}	Thread safety	MT-Safe env
+.TE
+
 .SH CONFORMING TO
 POSIX.1-2001.
 .SH BUGS
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH] atexit.3: ATTRIBUTES: Note functions that is thread-safe
       [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
                     ` (8 preceding siblings ...)
  2015-04-29 10:09   ` [PATCH] sysconf.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
@ 2015-04-29 19:19   ` Michael Kerrisk (man-pages)
  9 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:19 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - atexit: MT-Safe


Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/atexit.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/atexit.3 b/man3/atexit.3
> index 13ffacf..be1ec21 100644
> --- a/man3/atexit.3
> +++ b/man3/atexit.3
> @@ -73,6 +73,19 @@ The
>  .BR atexit ()
>  function returns the value 0 if successful; otherwise
>  it returns a nonzero value.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR atexit ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
>  .SH NOTES
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] bsearch.3: ATTRIBUTES: Note functions that is thread-safe
       [not found]     ` <1430302166-1700-2-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:21       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:21 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - bsearch: MT-Safe

Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/bsearch.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/bsearch.3 b/man3/bsearch.3
> index 22c2ee3..ac0b1f4 100644
> --- a/man3/bsearch.3
> +++ b/man3/bsearch.3
> @@ -74,6 +74,19 @@ function returns a pointer to a matching member of the
>  array, or NULL if no match is found.
>  If there are multiple elements that
>  match the key, the element returned is unspecified.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR bsearch ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  SVr4, 4.3BSD, POSIX.1-2001, C89, C99.
>  .SH EXAMPLE
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] ftw.3: ATTRIBUTES: Note functions that are thread-safe
       [not found]     ` <1430302166-1700-3-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:21       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:21 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> markings of functions in glibc are:
> - nftw: MT-Safe cwd
> - ftw:  MT-Safe

Thanks, Zeng. Applied.

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/ftw.3 | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
> 
> diff --git a/man3/ftw.3 b/man3/ftw.3
> index b24cfd6..b421c00 100644
> --- a/man3/ftw.3
> +++ b/man3/ftw.3
> @@ -350,6 +350,22 @@ and that value is returned as the result of
>  .SH VERSIONS
>  .BR nftw ()
>  is available under glibc since version 2.1.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR nftw ()
> +T}	Thread safety	MT-Safe cwd
> +T{
> +.BR ftw ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  POSIX.1-2001, POSIX.1-2008, SVr4, SUSv1.
>  POSIX.1-2008 marks
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] iconv_close.3: ATTRIBUTES: Note functions that is thread-safe
       [not found]     ` <1430302166-1700-4-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:21       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:21 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - iconv_close: MT-Safe


Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/iconv_close.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/iconv_close.3 b/man3/iconv_close.3
> index 6b80be0..9634f08 100644
> --- a/man3/iconv_close.3
> +++ b/man3/iconv_close.3
> @@ -36,6 +36,19 @@ In case of error, it sets
>  and returns \-1.
>  .SH VERSIONS
>  This function is available in glibc since version 2.1.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR iconv_close ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  UNIX98, POSIX.1-2001.
>  .SH SEE ALSO
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] inet_ntop.3: ATTRIBUTES: Note functions that is thread-safe
       [not found]     ` <1430302166-1700-5-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:22       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:22 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - inet_ntop: MT-Safe locale

Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael



> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/inet_ntop.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/inet_ntop.3 b/man3/inet_ntop.3
> index 5144344..5cd8c83 100644
> --- a/man3/inet_ntop.3
> +++ b/man3/inet_ntop.3
> @@ -97,6 +97,19 @@ was not a valid address family.
>  .B ENOSPC
>  The converted address string would exceed the size given by
>  .IR size .
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR inet_ntop ()
> +T}	Thread safety	MT-Safe locale
> +.TE
> +
>  .SH CONFORMING TO
>  POSIX.1-2001.
>  Note that RFC\ 2553 defines a prototype where the last argument
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] lsearch.3: ATTRIBUTES: Note functions that are thread-safe
       [not found]     ` <1430302166-1700-6-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:22       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:22 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> markings of functions in glibc are:
> - lfind:   MT-Safe
> - lsearch: MT-Safe


Thanks, Zeng. Applied.

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/lsearch.3 | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/man3/lsearch.3 b/man3/lsearch.3
> index 3b4637d..f192960 100644
> --- a/man3/lsearch.3
> +++ b/man3/lsearch.3
> @@ -77,6 +77,20 @@ NULL if no match is found.
>  returns a pointer to
>  a matching member of the array, or to the newly added member if no
>  match is found.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lbw18 lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR lfind (),
> +.BR lsearch ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  SVr4, 4.3BSD, POSIX.1-2001.
>  Present in libc since libc-4.6.27.
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] on_exit.3: ATTRIBUTES: Note functions that is thread-safe
       [not found]     ` <1430302166-1700-7-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:22       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:22 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - on_exit: MT-Safe


Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/on_exit.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/on_exit.3 b/man3/on_exit.3
> index 31d2b82..2502f13 100644
> --- a/man3/on_exit.3
> +++ b/man3/on_exit.3
> @@ -78,6 +78,19 @@ The
>  .BR on_exit ()
>  function returns the value 0 if successful; otherwise
>  it returns a nonzero value.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR on_exit ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  This function comes from SunOS 4, but is also present in glibc.
>  It no longer occurs in Solaris (SunOS 5).
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] putpwent.3: ATTRIBUTES: Note functions that is thread-safe
       [not found]     ` <1430302166-1700-8-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:23       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:23 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - putpwent: MT-Safe locale


Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/putpwent.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/putpwent.3 b/man3/putpwent.3
> index 3bcb09d..043aa50 100644
> --- a/man3/putpwent.3
> +++ b/man3/putpwent.3
> @@ -79,6 +79,19 @@ is set to indicate the cause.
>  .TP
>  .B EINVAL
>  Invalid (NULL) argument given.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR putpwent ()
> +T}	Thread safety	MT-Safe locale
> +.TE
> +
>  .SH CONFORMING TO
>  SVr4.
>  .SH SEE ALSO
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] qsort.3: ATTRIBUTES: Note functions that are thread-safe
       [not found]     ` <1430302166-1700-9-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:23       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:23 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> qsort() matches glibc marking.
>>From research, We think qsort_r() is thread-safe. But, there
> is not marking of qsort_r() in glibc document.
> - qsort:   MT-Safe
> - qsort_r: MT-Safe

Thanks, Zeng. Applied.

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/qsort.3 | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/man3/qsort.3 b/man3/qsort.3
> index 442ae15..286263a 100644
> --- a/man3/qsort.3
> +++ b/man3/qsort.3
> @@ -97,6 +97,20 @@ functions return no value.
>  .SH VERSIONS
>  .BR qsort_r ()
>  was added to glibc in version 2.8.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lbw18 lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR qsort (),
> +.BR qsort_r ()
> +T}	Thread safety	MT-Safe
> +.TE
> +
>  .SH CONFORMING TO
>  The
>  .BR qsort ()
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] sysconf.3: ATTRIBUTES: Note functions that is thread-safe
       [not found]     ` <1430302166-1700-10-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
@ 2015-04-29 19:23       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-04-29 19:23 UTC (permalink / raw)
  To: Zeng Linggang
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/29/2015 12:09 PM, Zeng Linggang wrote:
> The marking matches glibc marking.
> The marking of functions in glibc is:
> - sysconf: MT-Safe env


Thanks, Zeng. Applied. (Again a number disagreement in the title 
of this patch; s/functions/function/)

Cheers,

Michael




> Signed-off-by: Zeng Linggang <zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
> ---
>  man3/sysconf.3 | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/man3/sysconf.3 b/man3/sysconf.3
> index 99a2c41..276629f 100644
> --- a/man3/sysconf.3
> +++ b/man3/sysconf.3
> @@ -324,6 +324,19 @@ is not changed.
>  In the case of options, a positive value is returned if a queried option
>  is available, and \-1 if it is not.
>  In the case of limits, \-1 means that there is no definite limit.
> +.SH ATTRIBUTES
> +For an explanation of the terms used in this section, see
> +.BR attributes (7).
> +.TS
> +allbox;
> +lb lb lb
> +l l l.
> +Interface	Attribute	Value
> +T{
> +.BR sysconf ()
> +T}	Thread safety	MT-Safe env
> +.TE
> +
>  .SH CONFORMING TO
>  POSIX.1-2001.
>  .SH BUGS
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2015-04-29 19:23 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-29 10:09 [PATCH] atexit.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
     [not found] ` <1430302166-1700-1-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 10:09   ` [PATCH] bsearch.3: " Zeng Linggang
     [not found]     ` <1430302166-1700-2-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:21       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] ftw.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
     [not found]     ` <1430302166-1700-3-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:21       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] iconv_close.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
     [not found]     ` <1430302166-1700-4-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:21       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] inet_ntop.3: " Zeng Linggang
     [not found]     ` <1430302166-1700-5-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:22       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] lsearch.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
     [not found]     ` <1430302166-1700-6-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:22       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] on_exit.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
     [not found]     ` <1430302166-1700-7-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:22       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] putpwent.3: " Zeng Linggang
     [not found]     ` <1430302166-1700-8-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:23       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] qsort.3: ATTRIBUTES: Note functions that are thread-safe Zeng Linggang
     [not found]     ` <1430302166-1700-9-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:23       ` Michael Kerrisk (man-pages)
2015-04-29 10:09   ` [PATCH] sysconf.3: ATTRIBUTES: Note functions that is thread-safe Zeng Linggang
     [not found]     ` <1430302166-1700-10-git-send-email-zenglg.jy-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2015-04-29 19:23       ` Michael Kerrisk (man-pages)
2015-04-29 19:19   ` [PATCH] atexit.3: " Michael Kerrisk (man-pages)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.