diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2020-10-05 17:29:38 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2020-10-05 17:29:46 +0100 |
commit | 5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d (patch) | |
tree | 159400570cd676c3acbdb8d427887abcfdb8beaf /manual | |
parent | 3102e28bd11ed1083d3defdfd75e6d1273ab45f9 (diff) | |
download | glibc-5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d.zip glibc-5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d.tar.gz glibc-5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d.tar.bz2 |
manual: Fix typo
Diffstat (limited to 'manual')
-rw-r--r-- | manual/threads.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/threads.texi b/manual/threads.texi index 4ab0622..5bcfe32 100644 --- a/manual/threads.texi +++ b/manual/threads.texi @@ -896,7 +896,7 @@ Model Aware Atomic Operations, gcc, Using the GNU Compiler Collection @smallexample if (__libc_single_threaded) - ++refeference_count; + ++reference_count; else __atomic_fetch_add (&reference_count, 1, __ATOMIC_ACQ_REL); @end smallexample |