From patchwork Mon Oct 5 16:34:52 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 40661 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 976D13950C68; Mon, 5 Oct 2020 16:34:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 976D13950C68 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1601915698; bh=ifFaAG5ZFufqB22BF+pNIB1eO18zxVP5W0ldlmt2jiU=; h=Date:To:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=pYcVsANhvDMHzd65poSimigEnatDjkbXgCaY2F2wUG8URpdrUlGmioqOrQTuDO+pr BzJrBCpo9Uv5e1ygA/v2HMPkIjQD0tIYR8GXa5mazhyHPAmtyvcjHSu1gcq0A3NhmD B/akenL0kB1lUyg6Vpw94/afpBeiFVX3UV1Poifc= X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by sourceware.org (Postfix) with ESMTP id 16089383E82D for ; Mon, 5 Oct 2020 16:34:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 16089383E82D Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-42-Aew9sm4VMnWRJdvNBB5NqQ-1; Mon, 05 Oct 2020 12:34:54 -0400 X-MC-Unique: Aew9sm4VMnWRJdvNBB5NqQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 67F148015B0 for ; Mon, 5 Oct 2020 16:34:53 +0000 (UTC) Received: from localhost (unknown [10.33.37.1]) by smtp.corp.redhat.com (Postfix) with ESMTP id 18ECF55782 for ; Mon, 5 Oct 2020 16:34:52 +0000 (UTC) Date: Mon, 5 Oct 2020 17:34:52 +0100 To: libc-alpha@sourceware.org Subject: [PATCH] manual: Fix typo Message-ID: <20201005163452.GA159629@redhat.com> MIME-Version: 1.0 X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Disposition: inline X-Spam-Status: No, score=-13.7 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H5, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Jonathan Wakely via Libc-alpha From: Jonathan Wakely Reply-To: Jonathan Wakely Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" --- manual/threads.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/threads.texi b/manual/threads.texi index 4ab0622443..5bcfe32d6a 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