From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72b.google.com (mail-qk1-x72b.google.com [IPv6:2607:f8b0:4864:20::72b]) by sourceware.org (Postfix) with ESMTPS id D625F385043B for ; Thu, 11 Mar 2021 11:24:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D625F385043B Received: by mail-qk1-x72b.google.com with SMTP id n79so20163645qke.3 for ; Thu, 11 Mar 2021 03:24:26 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=5vEGN9WhOnUYM3jkCNAd0IZpnldK78Qzqd05w79L0Yg=; b=OlXLwNLdYxwJkCEQ/PXYNucyv4/+w9X5HLX/g0EQqv98LloAW9kmplCEPyBuTM53Nd B/UuhUSM+n4KjxtcJ7ydtBxgW5zcDZE6oQuuAAp7XiYz+DjfWRngk8TALvDMtRuoIP0i X6AMMnyQQWTUQp81IVQf4mfyYuwNAH8KiMgbyLusChgi7PQF89oR74xVi8LLNAVxbp5e BObQjvw/gw3Z/M1g+tM4/UIu3TZdBjPJr0RuNRXIYZImMH3JYJXg6Fs/uvcH8+B8ghw8 RNk9yV+xqobOSZUZC7C63OiaUm2woEESQcr8znkjooISMECn+Eh4U6PuSyzVsOJLZAIJ ATVA== X-Gm-Message-State: AOAM533EkZ0QhLRCTjOtGNUsvBN8RO3cP4bDNCf59EIt4ua66FOJ/+UR RiHeTd23b/TlxkIBYe0wOhL64HirHzh5tWhK X-Google-Smtp-Source: ABdhPJwg8BbU9/fVoHD2+o3jWFVT5hO50J+8JO4al6m6+o4Rj9IA+EYpn5rQ/2smgO5Pthuc2Z2wtA== X-Received: by 2002:a05:620a:7:: with SMTP id j7mr7129119qki.161.1615461866367; Thu, 11 Mar 2021 03:24:26 -0800 (PST) Received: from [192.168.1.4] ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id f17sm1451976qtl.89.2021.03.11.03.24.25 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 11 Mar 2021 03:24:26 -0800 (PST) Subject: Re: [PATCH v4 4/5] io: Add closefrom [BZ #10353] To: Joseph Myers Cc: libc-alpha@sourceware.org References: <20210310152633.3916978-1-adhemerval.zanella@linaro.org> <20210310152633.3916978-4-adhemerval.zanella@linaro.org> From: Adhemerval Zanella Message-ID: <9105b5b4-6609-b72c-d2ce-09c6bad980eb@linaro.org> Date: Thu, 11 Mar 2021 08:24:23 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-13.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, NICE_REPLY_A, 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-List-Received-Date: Thu, 11 Mar 2021 11:24:28 -0000 On 10/03/2021 18:54, Joseph Myers wrote: > On Wed, 10 Mar 2021, Adhemerval Zanella via Libc-alpha wrote: > >> diff --git a/NEWS b/NEWS >> index ff2b952a06..0c7bc74cca 100644 >> --- a/NEWS >> +++ b/NEWS >> @@ -91,6 +91,10 @@ Major new features: >> The latest GCC available at this time (10.2) does not support this level of >> fortification. >> >> +* The function closefrom has been added. It closes all file descriptors >> + greater than given integer. This function is a GNU extension, although it >> + also present in other systems. > > That's the NEWS section for 2.33. This needs to go in the section for > 2.34. > Ack.