From owner-svn-src-stable@freebsd.org Mon Mar 9 19:55:16 2020 Return-Path: Delivered-To: svn-src-stable@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 4D2AE26B8E8; Mon, 9 Mar 2020 19:55:16 +0000 (UTC) (envelope-from carlavilla@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48bpq72WkJz4SLy; Mon, 9 Mar 2020 19:55:15 +0000 (UTC) (envelope-from carlavilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D56E11800A; Mon, 9 Mar 2020 19:55:14 +0000 (UTC) (envelope-from carlavilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 029JtEf7042848; Mon, 9 Mar 2020 19:55:14 GMT (envelope-from carlavilla@FreeBSD.org) Received: (from carlavilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 029JtElN042845; Mon, 9 Mar 2020 19:55:14 GMT (envelope-from carlavilla@FreeBSD.org) Message-Id: <202003091955.029JtElN042845@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: carlavilla set sender to carlavilla@FreeBSD.org using -f From: Sergio Carlavilla Delgado Date: Mon, 9 Mar 2020 19:55:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r358817 - stable/12/share/man/man3 X-SVN-Group: stable-12 X-SVN-Commit-Author: carlavilla X-SVN-Commit-Paths: stable/12/share/man/man3 X-SVN-Commit-Revision: 358817 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Mar 2020 19:55:16 -0000 Author: carlavilla (doc committer) Date: Mon Mar 9 19:55:13 2020 New Revision: 358817 URL: https://svnweb.freebsd.org/changeset/base/358817 Log: MFC r358352: Add HISTORY sections to tree(3), stdarg(3) and sigevent(3) Submitted by: gbergling@gmail.com Approved by: bcr@(mentor) Modified: stable/12/share/man/man3/sigevent.3 stable/12/share/man/man3/stdarg.3 stable/12/share/man/man3/tree.3 Directory Properties: stable/12/ (props changed) Modified: stable/12/share/man/man3/sigevent.3 ============================================================================== --- stable/12/share/man/man3/sigevent.3 Mon Mar 9 19:46:28 2020 (r358816) +++ stable/12/share/man/man3/sigevent.3 Mon Mar 9 19:55:13 2020 (r358817) @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 15, 2016 +.Dd February 25, 2020 .Dt SIGEVENT 3 .Os .Sh NAME @@ -120,6 +120,11 @@ notifications must link against the .Xr mq_notify 2 , .Xr timer_create 2 , .Xr siginfo 3 +.Sh HISTORY +The +.Va sigevent +structure first appeared in +.Fx 3.3 . .Sh STANDARDS The .Vt struct sigevent Modified: stable/12/share/man/man3/stdarg.3 ============================================================================== --- stable/12/share/man/man3/stdarg.3 Mon Mar 9 19:46:28 2020 (r358816) +++ stable/12/share/man/man3/stdarg.3 Mon Mar 9 19:55:13 2020 (r358817) @@ -32,7 +32,7 @@ .\" @(#)stdarg.3 8.1 (Berkeley) 6/5/93 .\" $FreeBSD$ .\" -.Dd October 25, 2002 +.Dd February 25, 2020 .Dt STDARG 3 .Os .Sh NAME @@ -216,6 +216,18 @@ The and .Fn va_end macros conform to +.St -isoC-99 . +.Sh HISTORY +The +.Fn va_start , +.Fn va_arg +and +.Fn va_end +macros were introduced in +.St -ansiC . +The +.Fn va_copy +macro was introduced in .St -isoC-99 . .Sh BUGS Unlike the Modified: stable/12/share/man/man3/tree.3 ============================================================================== --- stable/12/share/man/man3/tree.3 Mon Mar 9 19:46:28 2020 (r358816) +++ stable/12/share/man/man3/tree.3 Mon Mar 9 19:55:13 2020 (r358817) @@ -30,7 +30,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 24, 2015 +.Dd February 25, 2020 .Dt TREE 3 .Os .Sh NAME @@ -601,6 +601,9 @@ return the pointer to the removed element otherwise th to indicate an error. .Sh SEE ALSO .Xr queue 3 +.Sh HISTORY +The tree macros first appeared in +.Fx 4.6 . .Sh AUTHORS The author of the tree macros is .An Niels Provos .