From owner-dev-commits-src-branches@freebsd.org Fri Sep 10 13:32:33 2021 Return-Path: Delivered-To: dev-commits-src-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A79F06ACB54; Fri, 10 Sep 2021 13:32:33 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4H5cHj2Q5tz3ngS; Fri, 10 Sep 2021 13:32:33 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.16.1/8.16.1) with ESMTPS id 18ADWJ2i033560 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Fri, 10 Sep 2021 16:32:23 +0300 (EEST) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua 18ADWJ2i033560 Received: (from kostik@localhost) by tom.home (8.16.1/8.16.1/Submit) id 18ADWJ9m033559; Fri, 10 Sep 2021 16:32:19 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 10 Sep 2021 16:32:19 +0300 From: Konstantin Belousov To: Jessica Clarke Cc: "src-committers@freebsd.org" , "dev-commits-src-all@freebsd.org" , "dev-commits-src-branches@freebsd.org" Subject: Re: git: 1c54a109d71e - stable/13 - Add _Fork() Message-ID: References: <202108121239.17CCdRU7058970@gitrepo.freebsd.org> <5D8F4CF0-E84F-4C45-94EE-89C7B72260EE@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5D8F4CF0-E84F-4C45-94EE-89C7B72260EE@freebsd.org> X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FORGED_GMAIL_RCVD,FREEMAIL_FROM, NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.5 X-Spam-Checker-Version: SpamAssassin 3.4.5 (2021-03-20) on tom.home X-Rspamd-Queue-Id: 4H5cHj2Q5tz3ngS X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: dev-commits-src-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the stable branches of the FreeBSD src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Sep 2021 13:32:33 -0000 On Fri, Sep 10, 2021 at 01:24:27AM +0100, Jessica Clarke wrote: > On 12 Aug 2021, at 13:39, Konstantin Belousov wrote: > > > > The branch stable/13 has been updated by kib: > > > > URL: https://cgit.FreeBSD.org/src/commit/?id=1c54a109d71ee768929e96fecbda27e44a173aa7 > > > > commit 1c54a109d71ee768929e96fecbda27e44a173aa7 > > Author: Konstantin Belousov > > AuthorDate: 2021-08-02 09:50:32 +0000 > > Commit: Konstantin Belousov > > CommitDate: 2021-08-12 12:37:54 +0000 > > > > Add _Fork() > > > > (cherry picked from commit 49ad342cc10cba14b3a40ba26cf8bb2150e2925a) > > --- > > ... > > @@ -176,9 +234,21 @@ There is insufficient swap space for the new process. > > .Xr setrlimit 2 , > > .Xr sigaction 2 , > > .Xr vfork 2 , > > -.Xr wait 2 > > +.Xr wait 2 , > > +.Xr pthread_atfork 3 > > .Sh HISTORY > > The > > .Fn fork > > function appeared in > > .At v1 . > > +.Pp > > +The > > +.Fn _Fork > > +function was defined by Austin Group together with the removal > > +of a requirement that the > > +.Fn fork > > +implementation must be async-signal safe. > > +The > > +.Fn _Fork > > +function appeared in > > +.Fx 14.0 . > > In fixing the case-insensitive build I noticed that, since you MFC’ed > this, this is inaccurate, and presumably should be 13.1 on both > stable/13 and main? Innacurate but perhaps acceptable. Sometimes people do the sweep over the man pages adjusting many cases like this in one go.