aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYubin Ruan <ablacktshirt@gmail.com>2017-09-15 09:52:50 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2017-09-15 09:53:17 +0200
commit91fd35ad46bc3a15334de5d70c0b8a20b353d22f (patch)
treecaf2a2c76381dd1aa25eb42ba462e7304e29e036
parent336e15b267a725a617dcbd387e44541450e569b9 (diff)
downloadman-pages-91fd35ad46bc3a15334de5d70c0b8a20b353d22f.tar.gz
pthread_mutexattr_setrobust.3: Minor fixes
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man3/pthread_mutexattr_setrobust.318
1 files changed, 9 insertions, 9 deletions
diff --git a/man3/pthread_mutexattr_setrobust.3 b/man3/pthread_mutexattr_setrobust.3
index e9e8e7648d..e5c806f5b5 100644
--- a/man3/pthread_mutexattr_setrobust.3
+++ b/man3/pthread_mutexattr_setrobust.3
@@ -86,7 +86,7 @@ on the mutex will block indefinitely.
.TP
.B PTHREAD_MUTEX_ROBUST
If a mutex is initialized with the
-.BR PTHREAD_MUTEX_ROBUST ,
+.BR PTHREAD_MUTEX_ROBUST
attribute and its owner dies without unlocking it,
any future attempts to call
.BR pthread_mutex_lock (3)
@@ -255,22 +255,22 @@ main(int argc, char *argv[])
s = pthread_mutex_lock(&mtx);
if (s == EOWNERDEAD) {
printf("[main thread] pthread_mutex_lock() returned EOWNERDEAD\\n");
- printf("[main thread] Now make the mutex consistent\\n");
+ printf("[main thread] Now make the mutex consistent\\n");
s = pthread_mutex_consistent(&mtx);
if (s != 0)
- handle_error_en(s, "pthread_mutex_consistent");
- printf("[main thread] Mutex is now consistent; unlocking\\n");
+ handle_error_en(s, "pthread_mutex_consistent");
+ printf("[main thread] Mutex is now consistent; unlocking\\n");
s = pthread_mutex_unlock(&mtx);
if (s != 0)
- handle_error_en(s, "pthread_mutex_unlock");
+ handle_error_en(s, "pthread_mutex_unlock");
exit(EXIT_SUCCESS);
} else if (s == 0) {
- printf("[main thread] pthread_mutex_lock() unexpectedly succeeded\\n");
- exit(EXIT_FAILURE);
+ printf("[main thread] pthread_mutex_lock() unexpectedly succeeded\\n");
+ exit(EXIT_FAILURE);
} else {
- printf("[main thread] pthread_mutex_lock() unexpectedly failed\\n");
- handle_error_en(s, "pthread_mutex_lock");
+ printf("[main thread] pthread_mutex_lock() unexpectedly failed\\n");
+ handle_error_en(s, "pthread_mutex_lock");
}
}
.EE