svn commit: r276261 - head/share/man/man3

Baptiste Daroussin bapt at FreeBSD.org
Fri Dec 26 22:41:14 UTC 2014


Author: bapt
Date: Fri Dec 26 22:41:10 2014
New Revision: 276261
URL: https://svnweb.freebsd.org/changeset/base/276261

Log:
  sort SEE ALSO

Modified:
  head/share/man/man3/makedev.3
  head/share/man/man3/pthread.3
  head/share/man/man3/pthread_attr.3
  head/share/man/man3/pthread_cond_init.3
  head/share/man/man3/pthread_mutex_init.3
  head/share/man/man3/pthread_mutexattr_getkind_np.3
  head/share/man/man3/pthread_rwlock_init.3
  head/share/man/man3/pthread_rwlockattr_getpshared.3
  head/share/man/man3/pthread_rwlockattr_init.3
  head/share/man/man3/pthread_rwlockattr_setpshared.3

Modified: head/share/man/man3/makedev.3
==============================================================================
--- head/share/man/man3/makedev.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/makedev.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -85,6 +85,6 @@ macro returns a device minor number whos
 range of an
 .Vt int .
 .Sh SEE ALSO
-.Xr devfs 5 ,
+.Xr mknod 2 ,
 .Xr devname 3 ,
-.Xr mknod 2
+.Xr devfs 5

Modified: head/share/man/man3/pthread.3
==============================================================================
--- head/share/man/man3/pthread.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -484,14 +484,14 @@ Threaded applications are linked with th
 .Xr pthread_cancel 3 ,
 .Xr pthread_cleanup_pop 3 ,
 .Xr pthread_cleanup_push 3 ,
-.Xr pthread_condattr_destroy 3 ,
-.Xr pthread_condattr_init 3 ,
 .Xr pthread_cond_broadcast 3 ,
 .Xr pthread_cond_destroy 3 ,
 .Xr pthread_cond_init 3 ,
 .Xr pthread_cond_signal 3 ,
 .Xr pthread_cond_timedwait 3 ,
 .Xr pthread_cond_wait 3 ,
+.Xr pthread_condattr_destroy 3 ,
+.Xr pthread_condattr_init 3 ,
 .Xr pthread_create 3 ,
 .Xr pthread_detach 3 ,
 .Xr pthread_equal 3 ,
@@ -500,6 +500,11 @@ Threaded applications are linked with th
 .Xr pthread_join 3 ,
 .Xr pthread_key_delete 3 ,
 .Xr pthread_kill 3 ,
+.Xr pthread_mutex_destroy 3 ,
+.Xr pthread_mutex_init 3 ,
+.Xr pthread_mutex_lock 3 ,
+.Xr pthread_mutex_trylock 3 ,
+.Xr pthread_mutex_unlock 3 ,
 .Xr pthread_mutexattr_destroy 3 ,
 .Xr pthread_mutexattr_getprioceiling 3 ,
 .Xr pthread_mutexattr_getprotocol 3 ,
@@ -508,21 +513,16 @@ Threaded applications are linked with th
 .Xr pthread_mutexattr_setprioceiling 3 ,
 .Xr pthread_mutexattr_setprotocol 3 ,
 .Xr pthread_mutexattr_settype 3 ,
-.Xr pthread_mutex_destroy 3 ,
-.Xr pthread_mutex_init 3 ,
-.Xr pthread_mutex_lock 3 ,
-.Xr pthread_mutex_trylock 3 ,
-.Xr pthread_mutex_unlock 3 ,
 .Xr pthread_once 3 ,
-.Xr pthread_rwlockattr_destroy 3 ,
-.Xr pthread_rwlockattr_getpshared 3 ,
-.Xr pthread_rwlockattr_init 3 ,
-.Xr pthread_rwlockattr_setpshared 3 ,
 .Xr pthread_rwlock_destroy 3 ,
 .Xr pthread_rwlock_init 3 ,
 .Xr pthread_rwlock_rdlock 3 ,
 .Xr pthread_rwlock_unlock 3 ,
 .Xr pthread_rwlock_wrlock 3 ,
+.Xr pthread_rwlockattr_destroy 3 ,
+.Xr pthread_rwlockattr_getpshared 3 ,
+.Xr pthread_rwlockattr_init 3 ,
+.Xr pthread_rwlockattr_setpshared 3 ,
 .Xr pthread_self 3 ,
 .Xr pthread_setcancelstate 3 ,
 .Xr pthread_setcanceltype 3 ,

Modified: head/share/man/man3/pthread_attr.3
==============================================================================
--- head/share/man/man3/pthread_attr.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_attr.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -208,8 +208,8 @@ Invalid or unsupported value for
 .Fa contentionscope .
 .El
 .Sh SEE ALSO
-.Xr pthread_attr_get_np 3 ,
 .Xr pthread_attr_affinity_np 3 ,
+.Xr pthread_attr_get_np 3 ,
 .Xr pthread_create 3
 .Sh STANDARDS
 .Fn pthread_attr_init ,

Modified: head/share/man/man3/pthread_cond_init.3
==============================================================================
--- head/share/man/man3/pthread_cond_init.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_cond_init.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -70,12 +70,12 @@ The system temporarily lacks the resourc
 variable.
 .El
 .Sh SEE ALSO
-.Xr pthread_condattr 3 ,
 .Xr pthread_cond_broadcast 3 ,
 .Xr pthread_cond_destroy 3 ,
 .Xr pthread_cond_signal 3 ,
 .Xr pthread_cond_timedwait 3 ,
-.Xr pthread_cond_wait 3
+.Xr pthread_cond_wait 3 ,
+.Xr pthread_condattr 3
 .Sh STANDARDS
 The
 .Fn pthread_cond_init

Modified: head/share/man/man3/pthread_mutex_init.3
==============================================================================
--- head/share/man/man3/pthread_mutex_init.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_mutex_init.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -66,11 +66,11 @@ is invalid.
 The process cannot allocate enough memory to create another mutex.
 .El
 .Sh SEE ALSO
-.Xr pthread_mutexattr 3 ,
 .Xr pthread_mutex_destroy 3 ,
 .Xr pthread_mutex_lock 3 ,
 .Xr pthread_mutex_trylock 3 ,
-.Xr pthread_mutex_unlock 3
+.Xr pthread_mutex_unlock 3 ,
+.Xr pthread_mutexattr 3
 .Sh STANDARDS
 The
 .Fn pthread_mutex_init

Modified: head/share/man/man3/pthread_mutexattr_getkind_np.3
==============================================================================
--- head/share/man/man3/pthread_mutexattr_getkind_np.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_mutexattr_getkind_np.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -75,7 +75,7 @@ The value specified by
 is invalid.
 .El
 .Sh SEE ALSO
-.Xr pthread_mutexattr_gettype 3 ,
-.Xr pthread_mutexattr_settype 3 ,
 .Xr pthread_mutex_destroy 3 ,
-.Xr pthread_mutex_init 3
+.Xr pthread_mutex_init 3 ,
+.Xr pthread_mutexattr_gettype 3 ,
+.Xr pthread_mutexattr_settype 3

Modified: head/share/man/man3/pthread_rwlock_init.3
==============================================================================
--- head/share/man/man3/pthread_rwlock_init.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_rwlock_init.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -85,9 +85,9 @@ The value specified by
 is invalid.
 .El
 .Sh SEE ALSO
+.Xr pthread_rwlock_destroy 3 ,
 .Xr pthread_rwlockattr_init 3 ,
-.Xr pthread_rwlockattr_setpshared 3 ,
-.Xr pthread_rwlock_destroy 3
+.Xr pthread_rwlockattr_setpshared 3
 .Sh STANDARDS
 The
 .Fn pthread_rwlock_init

Modified: head/share/man/man3/pthread_rwlockattr_getpshared.3
==============================================================================
--- head/share/man/man3/pthread_rwlockattr_getpshared.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_rwlockattr_getpshared.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -71,9 +71,9 @@ The value specified by
 is invalid.
 .El
 .Sh SEE ALSO
+.Xr pthread_rwlock_init 3 ,
 .Xr pthread_rwlockattr_init 3 ,
-.Xr pthread_rwlockattr_setpshared 3 ,
-.Xr pthread_rwlock_init 3
+.Xr pthread_rwlockattr_setpshared 3
 .Sh STANDARDS
 The
 .Fn pthread_rwlockattr_getpshared

Modified: head/share/man/man3/pthread_rwlockattr_init.3
==============================================================================
--- head/share/man/man3/pthread_rwlockattr_init.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_rwlockattr_init.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -55,10 +55,10 @@ function will fail if:
 Insufficient memory exists to initialize the attribute object.
 .El
 .Sh SEE ALSO
+.Xr pthread_rwlock_init 3 ,
 .Xr pthread_rwlockattr_destroy 3 ,
 .Xr pthread_rwlockattr_getpshared 3 ,
-.Xr pthread_rwlockattr_setpshared 3 ,
-.Xr pthread_rwlock_init 3
+.Xr pthread_rwlockattr_setpshared 3
 .Sh STANDARDS
 The
 .Fn pthread_rwlockattr_init

Modified: head/share/man/man3/pthread_rwlockattr_setpshared.3
==============================================================================
--- head/share/man/man3/pthread_rwlockattr_setpshared.3	Fri Dec 26 22:34:15 2014	(r276260)
+++ head/share/man/man3/pthread_rwlockattr_setpshared.3	Fri Dec 26 22:41:10 2014	(r276261)
@@ -75,9 +75,9 @@ or
 is invalid.
 .El
 .Sh SEE ALSO
+.Xr pthread_rwlock_init 3 ,
 .Xr pthread_rwlockattr_getpshared 3 ,
-.Xr pthread_rwlockattr_init 3 ,
-.Xr pthread_rwlock_init 3
+.Xr pthread_rwlockattr_init 3
 .Sh STANDARDS
 The
 .Fn pthread_rwlockattr_setpshared


More information about the svn-src-head mailing list