From patchwork Sat Jan 2 11:57:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jangwoong Kim <6812skiii@gmail.com> X-Patchwork-Id: 41612 X-Patchwork-Delegate: arjun.is@lostca.se 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 C6025386EC7C; Sat, 2 Jan 2021 11:57:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C6025386EC7C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1609588670; bh=ny1a8vJYTG8zLKVpUwB/k/VDWw5AOGCEH461oF66dTU=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=xS89uJd2ldH51Pp2SscmuqCTJs7e9BA5lK1tzFPKw0uLxL1j1pUa2aGAR8cxkZ2At WJ1NprSquxqOOJqXzPnnT14FfQp7IhGrYGLpXfJRkwRjkduKOme4dM2IIpEVB5tWZ7 y7YdXIifN/a3auOic971faqde9demP2Fx3/wrGL8= X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from mail-pg1-x52c.google.com (mail-pg1-x52c.google.com [IPv6:2607:f8b0:4864:20::52c]) by sourceware.org (Postfix) with ESMTPS id 1E565385803B for ; Sat, 2 Jan 2021 11:57:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 1E565385803B Received: by mail-pg1-x52c.google.com with SMTP id i5so15772298pgo.1 for ; Sat, 02 Jan 2021 03:57:49 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=ny1a8vJYTG8zLKVpUwB/k/VDWw5AOGCEH461oF66dTU=; b=MY/Ba8aka2t30WnTsF251ZG9/KanXQR/xPsNlYbizxjHNq7XZoFeWL8iUATh7i3f77 15jk6NdDF59/9pAdazJu/Zi6OMLla5vu9Ttxc+I6zN86lc6H9OyoUy85U0+HxPwEX0q0 /o6dBbLeKi2SAw6mgc3ZYCIx+asfj7SOLzKHucfPDiry0LBguAjDZUq6tp4gVLoB/S46 nB3vacP2TAqgr9LuAotjiA0Se0dH+EJ3veTCHGHowrydkiWFz3yCIYPTMSrfvVnUEWUx E9PB60HrFEeLbPLMY8cWX0A3vX/aKdzoNTsjYMrLIpg/N+BFj24qD9DvVPwHyA6zXoU6 Q0IQ== X-Gm-Message-State: AOAM532HFfDZiWIPC4n+crVRkCIbCHceGnwSJVfcKdAJqOyeTOttGUIg 4iGpQfI3NiyNMVyNijLp2KKG9sVCKC5EfQ== X-Google-Smtp-Source: ABdhPJxHApIeWSU2Vxx1qMi992cuJEjW1RYQoLeR7MCU/8hkmqAyiJIYu0DRGqEqcFLctTknCArZAQ== X-Received: by 2002:aa7:8813:0:b029:19d:cd3b:6f89 with SMTP id c19-20020aa788130000b029019dcd3b6f89mr37861997pfo.42.1609588667854; Sat, 02 Jan 2021 03:57:47 -0800 (PST) Received: from DESKTOP-GN23183.localdomain ([222.99.248.130]) by smtp.gmail.com with ESMTPSA id m8sm16496880pjr.39.2021.01.02.03.57.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 02 Jan 2021 03:57:47 -0800 (PST) To: libc-alpha@sourceware.org Subject: [PATCH] nptl: Fix typo Date: Sat, 2 Jan 2021 20:57:37 +0900 Message-Id: <20210102115737.297-1-6812skiii@gmail.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Spam-Status: No, score=-12.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, FROM_STARTS_WITH_NUMS, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, 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: Jangwoong Kim via Libc-alpha From: Jangwoong Kim <6812skiii@gmail.com> Reply-To: Jangwoong Kim <6812skiii@gmail.com> Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" This commit fixes a typo. --- nptl/pthread_cond_wait.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nptl/pthread_cond_wait.c b/nptl/pthread_cond_wait.c index 02d11c61db..18388b8b0a 100644 --- a/nptl/pthread_cond_wait.c +++ b/nptl/pthread_cond_wait.c @@ -81,7 +81,7 @@ __condvar_cancel_waiting (pthread_cond_t *cond, uint64_t seq, unsigned int g, { bool consumed_signal = false; - /* No deadlock with group switching is possible here because we have do + /* No deadlock with group switching is possible here because we do not hold a reference on the group. */ __condvar_acquire_lock (cond, private);