From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7919) id 9ACCB3858D20; Fri, 5 May 2023 09:12:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9ACCB3858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1683277970; bh=sAnlsz1Ij5Awin3MjDx32OIQEk1EAy0OF1zZXmc4SCU=; h=From:To:Subject:Date:From; b=eGmo1VucG+YoxA7Erq6jgq10Yxl9utyj9Q+I/YxgUmRll1uY77kNxCvPYU301d9C7 Nap9ZGh0yDnTmOiGj/s6rOOWcWmqe0PPPttbq7XapuTPHQ2imLdn4EDIizRSFOWq9C XbTOkZHeVOeincFvI67KfQK/Xd8SsmnKSJdfBlXU= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sam James To: glibc-cvs@sourceware.org Subject: [glibc] hppa: Fix 'concurrency' typo in comment X-Act-Checkin: glibc X-Git-Author: Sam James X-Git-Refname: refs/heads/master X-Git-Oldrev: 4571fb8fe64644c79d91a8f76c148a05b7088ea8 X-Git-Newrev: c8bd171caf443ff514a1fc6d50d239e0747b6dcc Message-Id: <20230505091250.9ACCB3858D20@sourceware.org> Date: Fri, 5 May 2023 09:12:50 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c8bd171caf443ff514a1fc6d50d239e0747b6dcc commit c8bd171caf443ff514a1fc6d50d239e0747b6dcc Author: Sam James Date: Fri May 5 10:12:07 2023 +0100 hppa: Fix 'concurrency' typo in comment Signed-off-by: Sam James Diff: --- sysdeps/hppa/nptl/pthread_spin_init.c | 2 +- sysdeps/hppa/nptl/pthread_spin_unlock.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/hppa/nptl/pthread_spin_init.c b/sysdeps/hppa/nptl/pthread_spin_init.c index dcb5b829a0..c44c775fbb 100644 --- a/sysdeps/hppa/nptl/pthread_spin_init.c +++ b/sysdeps/hppa/nptl/pthread_spin_init.c @@ -21,7 +21,7 @@ int __pthread_spin_init (pthread_spinlock_t *lock, int pshared) { - /* CONCURRENCTY NOTES: + /* CONCURRENCY NOTES: The atomic_exchange_release synchronizes-with the atomic_exhange_acq in pthread_spin_lock. diff --git a/sysdeps/hppa/nptl/pthread_spin_unlock.c b/sysdeps/hppa/nptl/pthread_spin_unlock.c index 8a85385657..3378c9ba5f 100644 --- a/sysdeps/hppa/nptl/pthread_spin_unlock.c +++ b/sysdeps/hppa/nptl/pthread_spin_unlock.c @@ -21,7 +21,7 @@ int __pthread_spin_unlock (pthread_spinlock_t *lock) { - /* CONCURRENCTY NOTES: + /* CONCURRENCY NOTES: The atomic_exchange_release synchronizes-with the atomic_exhange_acq in pthread_spin_lock.