svn commit: r302010 - in stable/10: lib/libthr share/man/man3
Jilles Tjoelker
jilles at FreeBSD.org
Sat Jun 18 13:42:35 UTC 2016
Author: jilles
Date: Sat Jun 18 13:42:33 2016
New Revision: 302010
URL: https://svnweb.freebsd.org/changeset/base/302010
Log:
MFC r300970: Remove non-history libkse references and fix typo
"PTHREAD_PROCESSES_PRIVATE".
Modified:
stable/10/lib/libthr/libthr.3
stable/10/share/man/man3/pthread_barrier_destroy.3
stable/10/share/man/man3/pthread_barrierattr.3
stable/10/share/man/man3/pthread_condattr.3
stable/10/share/man/man3/pthread_spin_init.3
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/lib/libthr/libthr.3
==============================================================================
--- stable/10/lib/libthr/libthr.3 Sat Jun 18 13:41:00 2016 (r302009)
+++ stable/10/lib/libthr/libthr.3 Sat Jun 18 13:42:33 2016 (r302010)
@@ -47,9 +47,7 @@ library provides a 1:1 implementation of
library interfaces for application threading.
It
has been optimized for use by applications expecting system scope thread
-semantics, and can provide significant performance improvements
-compared to
-.Lb libkse .
+semantics.
.Pp
The library is tightly integrated with the run-time link editor
.Xr ld-elf.so.1 1
Modified: stable/10/share/man/man3/pthread_barrier_destroy.3
==============================================================================
--- stable/10/share/man/man3/pthread_barrier_destroy.3 Sat Jun 18 13:41:00 2016 (r302009)
+++ stable/10/share/man/man3/pthread_barrier_destroy.3 Sat Jun 18 13:42:33 2016 (r302010)
@@ -75,9 +75,7 @@ argument to
.Fn pthread_barrier_init .
Once the threads have been released the barrier will be reset.
.Sh IMPLEMENTATION NOTES
-In both
-.Lb libkse
-and
+In
.Lb libthr
the
.Dv PTHREAD_BARRIER_SERIAL_THREAD
Modified: stable/10/share/man/man3/pthread_barrierattr.3
==============================================================================
--- stable/10/share/man/man3/pthread_barrierattr.3 Sat Jun 18 13:41:00 2016 (r302009)
+++ stable/10/share/man/man3/pthread_barrierattr.3 Sat Jun 18 13:42:33 2016 (r302010)
@@ -137,11 +137,9 @@ barriers
does not fully conform to
.St -p1003.2
because the process-shared attribute is ignored in
-.Lb libthr ,
-and in
-.Lb libkse ;
+.Lb libthr ;
if any value other than
-.Dv PTHREAD_PROCESSES_PRIVATE
+.Dv PTHREAD_PROCESS_PRIVATE
is specified in a call to
.Fn pthread_barrierattr_setpshared ,
it will return
Modified: stable/10/share/man/man3/pthread_condattr.3
==============================================================================
--- stable/10/share/man/man3/pthread_condattr.3 Sat Jun 18 13:41:00 2016 (r302009)
+++ stable/10/share/man/man3/pthread_condattr.3 Sat Jun 18 13:42:33 2016 (r302010)
@@ -167,7 +167,7 @@ does not fully conform to
.St -p1003.2
because the process-shared attribute is ignored;
if any value other than
-.Dv PTHREAD_PROCESSES_PRIVATE
+.Dv PTHREAD_PROCESS_PRIVATE
is specified in a call to
.Fn pthread_condattr_setpshared ,
it will return
Modified: stable/10/share/man/man3/pthread_spin_init.3
==============================================================================
--- stable/10/share/man/man3/pthread_spin_init.3 Sat Jun 18 13:41:00 2016 (r302009)
+++ stable/10/share/man/man3/pthread_spin_init.3 Sat Jun 18 13:42:33 2016 (r302010)
@@ -129,10 +129,8 @@ does not fully conform to
because the
.Fa pshared
argument is ignored in
-.Lb libthr ,
-and in
-.Lb libkse
+.Lb libthr ;
if any value other than
-.Dv PTHREAD_PROCESSES_PRIVATE
+.Dv PTHREAD_PROCESS_PRIVATE
is specified, it returns
.Er EINVAL .
More information about the svn-src-stable-10
mailing list