diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
commit | f03b78fae46905a5676c7b7f360cadba2f290708 (patch) | |
tree | 322292da3aeeb1b8e5504afaf089d8a486228303 /sysdeps/pthread/tst-robust9.c | |
parent | 2208066603a136f95cfb815ca9281262e6465784 (diff) | |
download | glibc-f03b78fae46905a5676c7b7f360cadba2f290708.tar.gz glibc-f03b78fae46905a5676c7b7f360cadba2f290708.tar.xz glibc-f03b78fae46905a5676c7b7f360cadba2f290708.zip |
nptl: Move pthread_mutex_consistent into libc
And deprecated pthread_mutex_consistent_np, its old name. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/pthread/tst-robust9.c')
-rw-r--r-- | sysdeps/pthread/tst-robust9.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/pthread/tst-robust9.c b/sysdeps/pthread/tst-robust9.c index befc14f2d8..532aebc4e9 100644 --- a/sysdeps/pthread/tst-robust9.c +++ b/sysdeps/pthread/tst-robust9.c @@ -14,10 +14,10 @@ tf (void *data) int err = pthread_mutex_lock (&m); if (err == EOWNERDEAD) { - err = pthread_mutex_consistent_np (&m); + err = pthread_mutex_consistent (&m); if (err) { - puts ("pthread_mutex_consistent_np"); + puts ("pthread_mutex_consistent"); exit (1); } } |