summaryrefslogtreecommitdiffstats
path: root/share/man/man3
diff options
context:
space:
mode:
Diffstat (limited to 'share/man/man3')
-rw-r--r--share/man/man3/pthread_cond_broadcast.36
-rw-r--r--share/man/man3/pthread_cond_destroy.36
-rw-r--r--share/man/man3/pthread_cond_init.36
-rw-r--r--share/man/man3/pthread_cond_signal.36
-rw-r--r--share/man/man3/pthread_cond_timedwait.36
-rw-r--r--share/man/man3/pthread_cond_wait.36
-rw-r--r--share/man/man3/pthread_create.34
-rw-r--r--share/man/man3/pthread_mutex_destroy.34
-rw-r--r--share/man/man3/pthread_mutex_init.34
-rw-r--r--share/man/man3/pthread_mutex_lock.36
-rw-r--r--share/man/man3/pthread_mutex_trylock.36
-rw-r--r--share/man/man3/pthread_mutex_unlock.36
12 files changed, 33 insertions, 33 deletions
diff --git a/share/man/man3/pthread_cond_broadcast.3 b/share/man/man3/pthread_cond_broadcast.3
index e302838..3b39287 100644
--- a/share/man/man3/pthread_cond_broadcast.3
+++ b/share/man/man3/pthread_cond_broadcast.3
@@ -56,11 +56,11 @@ is invalid.
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_cond_init 3 ,
.Xr pthread_cond_destroy 3 ,
-.Xr pthread_cond_wait 3 ,
+.Xr pthread_cond_init 3 ,
+.Xr pthread_cond_signal 3 ,
.Xr pthread_cond_timedwait 3 ,
-.Xr pthread_cond_signal 3
+.Xr pthread_cond_wait 3
.Sh STANDARDS
.Fn pthread_cond_broadcast
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_cond_destroy.3 b/share/man/man3/pthread_cond_destroy.3
index a14c30a..22921b4 100644
--- a/share/man/man3/pthread_cond_destroy.3
+++ b/share/man/man3/pthread_cond_destroy.3
@@ -60,11 +60,11 @@ is locked by another thread.
.El
.Pp
.Sh SEE ALSO
+.Xr pthread_cond_broadcast 3 ,
.Xr pthread_cond_init 3 ,
-.Xr pthread_cond_wait 3 ,
-.Xr pthread_cond_timedwait 3 ,
.Xr pthread_cond_signal 3 ,
-.Xr pthread_cond_broadcast 3
+.Xr pthread_cond_timedwait 3 ,
+.Xr pthread_cond_wait 3
.Sh STANDARDS
.Fn pthread_cond_destroy
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_cond_init.3 b/share/man/man3/pthread_cond_init.3
index 3c78e73..00f669d 100644
--- a/share/man/man3/pthread_cond_init.3
+++ b/share/man/man3/pthread_cond_init.3
@@ -65,11 +65,11 @@ The temporarily lacks the resources to create another condition variable.
.El
.Pp
.Sh SEE ALSO
+.Xr pthread_cond_broadcast 3 ,
.Xr pthread_cond_destroy 3 ,
-.Xr pthread_cond_wait 3 ,
-.Xr pthread_cond_timedwait 3 ,
.Xr pthread_cond_signal 3 ,
-.Xr pthread_cond_broadcast 3
+.Xr pthread_cond_timedwait 3 ,
+.Xr pthread_cond_wait 3
.Sh STANDARDS
.Fn pthread_cond_init
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_cond_signal.3 b/share/man/man3/pthread_cond_signal.3
index 66211b4..679e46f 100644
--- a/share/man/man3/pthread_cond_signal.3
+++ b/share/man/man3/pthread_cond_signal.3
@@ -56,11 +56,11 @@ is invalid.
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_cond_init 3 ,
+.Xr pthread_cond_broadcast 3 ,
.Xr pthread_cond_destroy 3 ,
-.Xr pthread_cond_wait 3 ,
+.Xr pthread_cond_init 3 ,
.Xr pthread_cond_timedwait 3 ,
-.Xr pthread_cond_broadcast 3
+.Xr pthread_cond_wait 3
.Sh STANDARDS
.Fn pthread_cond_signal
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_cond_timedwait.3 b/share/man/man3/pthread_cond_timedwait.3
index bf98e77..ab0184a 100644
--- a/share/man/man3/pthread_cond_timedwait.3
+++ b/share/man/man3/pthread_cond_timedwait.3
@@ -73,11 +73,11 @@ The system time has reached or exceeded the time specified in
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_cond_init 3 ,
+.Xr pthread_cond_broadcast 3 ,
.Xr pthread_cond_destroy 3 ,
-.Xr pthread_cond_wait 3 ,
+.Xr pthread_cond_init 3 ,
.Xr pthread_cond_signal 3 ,
-.Xr pthread_cond_broadcast 3
+.Xr pthread_cond_wait 3
.Sh STANDARDS
.Fn pthread_cond_timedwait
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_cond_wait.3 b/share/man/man3/pthread_cond_wait.3
index fa063bc..7f70b59 100644
--- a/share/man/man3/pthread_cond_wait.3
+++ b/share/man/man3/pthread_cond_wait.3
@@ -67,11 +67,11 @@ is invalid.
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_cond_init 3 ,
+.Xr pthread_cond_broadcast 3 ,
.Xr pthread_cond_destroy 3 ,
-.Xr pthread_cond_timedwait 3 ,
+.Xr pthread_cond_init 3 ,
.Xr pthread_cond_signal 3 ,
-.Xr pthread_cond_broadcast 3
+.Xr pthread_cond_timedwait 3
.Sh STANDARDS
.Fn pthread_cond_wait
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_create.3 b/share/man/man3/pthread_create.3
index 3b6067a..6966b56 100644
--- a/share/man/man3/pthread_create.3
+++ b/share/man/man3/pthread_create.3
@@ -101,9 +101,9 @@ is invalid.
.Pp
.Sh SEE ALSO
.Xr fork 2 ,
-.Xr pthread_exit 3 ,
-.Xr pthread_cleanup_push 3 ,
.Xr pthread_cleanup_pop 3 ,
+.Xr pthread_cleanup_push 3 ,
+.Xr pthread_exit 3 ,
.Xr pthread_join 3
.Sh STANDARDS
.Fn pthread_create
diff --git a/share/man/man3/pthread_mutex_destroy.3 b/share/man/man3/pthread_mutex_destroy.3
index 6b27501..e9fb9c1 100644
--- a/share/man/man3/pthread_mutex_destroy.3
+++ b/share/man/man3/pthread_mutex_destroy.3
@@ -61,8 +61,8 @@ is locked by another thread.
.Sh SEE ALSO
.Xr pthread_mutex_init 3 ,
.Xr pthread_mutex_lock 3 ,
-.Xr pthread_mutex_unlock 3 ,
-.Xr pthread_mutex_trylock 3
+.Xr pthread_mutex_trylock 3 ,
+.Xr pthread_mutex_unlock 3
.Sh STANDARDS
.Fn pthread_mutex_destroy
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_mutex_init.3 b/share/man/man3/pthread_mutex_init.3
index 39e105e..d5292ff 100644
--- a/share/man/man3/pthread_mutex_init.3
+++ b/share/man/man3/pthread_mutex_init.3
@@ -66,8 +66,8 @@ The temporarily lacks the resources to create another mutex.
.Sh SEE ALSO
.Xr pthread_mutex_destroy 3 ,
.Xr pthread_mutex_lock 3 ,
-.Xr pthread_mutex_unlock 3 ,
-.Xr pthread_mutex_trylock 3
+.Xr pthread_mutex_trylock 3 ,
+.Xr pthread_mutex_unlock 3
.Sh STANDARDS
.Fn pthread_mutex_init
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_mutex_lock.3 b/share/man/man3/pthread_mutex_lock.3
index 564cd67..a0aa07d 100644
--- a/share/man/man3/pthread_mutex_lock.3
+++ b/share/man/man3/pthread_mutex_lock.3
@@ -61,10 +61,10 @@ A deadlock would occur if the thread blocked waiting for
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_mutex_unlock 3 ,
-.Xr pthread_mutex_trylock 3 ,
+.Xr pthread_mutex_destroy 3 ,
.Xr pthread_mutex_init 3 ,
-.Xr pthread_mutex_destroy 3
+.Xr pthread_mutex_trylock 3 ,
+.Xr pthread_mutex_unlock 3
.Sh STANDARDS
.Fn pthread_mutex_lock
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_mutex_trylock.3 b/share/man/man3/pthread_mutex_trylock.3
index 0360999..9f28380 100644
--- a/share/man/man3/pthread_mutex_trylock.3
+++ b/share/man/man3/pthread_mutex_trylock.3
@@ -62,10 +62,10 @@ is already locked.
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_mutex_lock 3 ,
-.Xr pthread_mutex_unlock 3 ,
+.Xr pthread_mutex_destroy 3 ,
.Xr pthread_mutex_init 3 ,
-.Xr pthread_mutex_destroy 3
+.Xr pthread_mutex_lock 3 ,
+.Xr pthread_mutex_unlock 3
.Sh STANDARDS
.Fn pthread_mutex_trylock
conforms to ISO/IEC 9945-1 ANSI/IEEE
diff --git a/share/man/man3/pthread_mutex_unlock.3 b/share/man/man3/pthread_mutex_unlock.3
index 7285e0e..95ba7e6 100644
--- a/share/man/man3/pthread_mutex_unlock.3
+++ b/share/man/man3/pthread_mutex_unlock.3
@@ -61,10 +61,10 @@ The current thread does not hold a lock on
.El
.Pp
.Sh SEE ALSO
-.Xr pthread_mutex_lock 3 ,
-.Xr pthread_mutex_trylock 3 ,
+.Xr pthread_mutex_destroy 3 ,
.Xr pthread_mutex_init 3 ,
-.Xr pthread_mutex_destroy 3
+.Xr pthread_mutex_lock 3 ,
+.Xr pthread_mutex_trylock 3
.Sh STANDARDS
.Fn pthread_mutex_unlock
conforms to ISO/IEC 9945-1 ANSI/IEEE
OpenPOWER on IntegriCloud