From owner-svn-src-all@freebsd.org Sun Feb 2 19:47:51 2020 Return-Path: Delivered-To: svn-src-all@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 12787237EDA; Sun, 2 Feb 2020 19:47:51 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 489hMB6Q83z4ZHl; Sun, 2 Feb 2020 19:47:50 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qt1-f176.google.com (mail-qt1-f176.google.com [209.85.160.176]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id CB38D14F20; Sun, 2 Feb 2020 19:47:50 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qt1-f176.google.com with SMTP id v25so9812949qto.7; Sun, 02 Feb 2020 11:47:50 -0800 (PST) X-Gm-Message-State: APjAAAUoaGUYY77en8QjnaosiRQbEPMni4np9xz2+C8hhL/gojNTro5q xFO2mM8Az2y7/WbgCsU2PtLgKRw1CswiUv0U8GE= X-Google-Smtp-Source: APXvYqxzxkQkQlojgprCTAhSE+tnJ6d+MyjvpS3Dj3102LXW8P8G5Byinsi/vSkBCbYB+96o+1OpihiQtwpzvC5MPco= X-Received: by 2002:aed:3f70:: with SMTP id q45mr4973866qtf.310.1580672870138; Sun, 02 Feb 2020 11:47:50 -0800 (PST) MIME-Version: 1.0 References: <202001300331.00U3VGCe017289@repo.freebsd.org> In-Reply-To: From: Kyle Evans Date: Sun, 2 Feb 2020 13:47:38 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r357284 - in head: include lib/libc/stdio To: Antoine Brodin Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Feb 2020 19:47:51 -0000 On Sun, Feb 2, 2020 at 12:57 AM Antoine Brodin wrote: > > On Thu, Jan 30, 2020 at 4:31 AM Kyle Evans wrote: > > > > Author: kevans > > Date: Thu Jan 30 03:31:16 2020 > > New Revision: 357284 > > URL: https://svnweb.freebsd.org/changeset/base/357284 > > > > Log: > > stdio: provide _unlocked variants of fflush, fputc, fputs, fread, fwrite > > > > fflush_unlocked is currently desired in ports by sysutils/metalog, and > > redefined as the locked fflush. > > > > fputc_unlocked, fputs_unlocked, fread_unlocked, and fwrite_unlocked are > > currently desired in ports by devel/elfutils, and redefined as the locked > > fputs, fread, and fwrite respectively. > > > > Reviewed by: kib > > MFC after: 2 weeks > > Differential Revision: https://reviews.freebsd.org/D23336 > > Hi, > > It seems that this change broke lang/gcc* ports. > Tested/fixed with r357419; sorry for the breakage! Thanks, Kyle Evans