diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-12-06 08:01:08 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-12-06 08:01:08 +0100 |
commit | 68007900beef12000ed90f38c251eaf32fbc0490 (patch) | |
tree | cffdc901f121e7464d60506ab67258d48ac38b3b /nptl | |
parent | 4fb4e7e821e36180835bf88e363f9f13b5797e3a (diff) | |
download | glibc-68007900beef12000ed90f38c251eaf32fbc0490.zip glibc-68007900beef12000ed90f38c251eaf32fbc0490.tar.gz glibc-68007900beef12000ed90f38c251eaf32fbc0490.tar.bz2 |
misc, nptl: Remove stray references to __condvar_load_64_relaxed
The function was renamed to __atomic_wide_counter_load_relaxed
in commit 8bd336a00a5311bf7a9e99b3b0e9f01ff5faa74b ("nptl: Extract
<bits/atomic_wide_counter.h> from pthread_cond_common.c").
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/pthread_cond_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_cond_common.c b/nptl/pthread_cond_common.c index fb56f93..78e8738 100644 --- a/nptl/pthread_cond_common.c +++ b/nptl/pthread_cond_common.c @@ -75,7 +75,7 @@ __condvar_fetch_xor_wseq_release (pthread_cond_t *cond, unsigned int val) static uint64_t __attribute__ ((unused)) __condvar_fetch_xor_wseq_release (pthread_cond_t *cond, unsigned int val) { - /* First, get the current value. See __condvar_load_64_relaxed. */ + /* First, get the current value. See __atomic_wide_counter_load_relaxed. */ unsigned int h, l, h2; do { |