From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.2 required=3.0 tests=BAYES_00,DATE_IN_PAST_06_12, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3F9BEC433E0 for ; Wed, 17 Feb 2021 19:51:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1060364E58 for ; Wed, 17 Feb 2021 19:51:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232371AbhBQTvr (ORCPT ); Wed, 17 Feb 2021 14:51:47 -0500 Received: from vmicros1.altlinux.org ([194.107.17.57]:36026 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229707AbhBQTvq (ORCPT ); Wed, 17 Feb 2021 14:51:46 -0500 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 2836372C8B1; Wed, 17 Feb 2021 22:51:00 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 124247CC8A2; Wed, 17 Feb 2021 22:50:59 +0300 (MSK) Date: Wed, 17 Feb 2021 08:00:00 +0000 From: "Dmitry V. Levin" To: Michael Kerrisk Cc: linux-man@vger.kernel.org Subject: [PATCH] epoll_wait.2: tfix Message-ID: <20210217080000.GA21832@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org Mention epoll_pwait2 in "CONFORMING TO" section. Complements: ba47eb5e3 "epoll_wait.2: Add documentation of epoll_pwait2()" Signed-off-by: Dmitry V. Levin --- man2/epoll_wait.2 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/man2/epoll_wait.2 b/man2/epoll_wait.2 index f941023c2..af4180df0 100644 --- a/man2/epoll_wait.2 +++ b/man2/epoll_wait.2 @@ -248,9 +248,10 @@ Library support is provided in glibc starting with version 2.6. .BR epoll_pwait2 () was added to Linux in kernel 5.11. .SH CONFORMING TO -.BR epoll_wait () +.BR epoll_wait (), +.BR epoll_pwait (), and -.BR epoll_pwait () +.BR epoll_pwait2 () are Linux-specific. .SH NOTES While one thread is blocked in a call to -- ldv