svn commit: r363106 - head/share/man/man7

2020-07-11 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Sat Jul 11 18:27:05 2020
New Revision: 363106
URL: https://svnweb.freebsd.org/changeset/base/363106

Log:
  Add orders man page
  
  PR:   239020
  Submitted by: gbe@
  Approved by:  imp@
  Obtained from:NetBSD
  MFC after:1 week
  Differential Revision:https://reviews.freebsd.org/D24293

Added:
  head/share/man/man7/orders.7   (contents, props changed)
Modified:
  head/share/man/man7/Makefile

Modified: head/share/man/man7/Makefile
==
--- head/share/man/man7/MakefileSat Jul 11 18:24:16 2020
(r363105)
+++ head/share/man/man7/MakefileSat Jul 11 18:27:05 2020
(r363106)
@@ -21,6 +21,7 @@ MAN=  arch.7 \
intro.7 \
maclabel.7 \
operator.7 \
+   orders.7 \
ports.7 \
release.7 \
sdoc.7 \

Added: head/share/man/man7/orders.7
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/share/man/man7/orders.7Sat Jul 11 18:27:05 2020
(r363106)
@@ -0,0 +1,111 @@
+.\" $NetBSD: orders.7,v 1.6 2011/08/06 11:07:18 jruoho Exp $
+.\"
+.\" Copyright (c) 2010 The NetBSD Foundation, Inc.
+.\" All rights reserved.
+.\"
+.\" This code is derived from software contributed to The NetBSD Foundation
+.\" by Jukka Ruohonen.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"notice, this list of conditions and the following disclaimer in the
+.\"documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+.\" POSSIBILITY OF SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd August 6, 2011
+.Dt ORDERS 7
+.Os
+.Sh NAME
+.Nm orders
+.Nd orders of magnitude
+.Sh DESCRIPTION
+The following table lists common multiples of bytes.
+.Bl -column -offset 2n \
+"Kilobyte" "Prefix" "Power of 2" "Power of 10"
+.It Sy Name Ta Sy Prefix Ta Sy Power of 2 Ta Sy Power of 10
+.It Kilobyte Ta kB Ta 2^10 Ta 10^3
+.It Megabyte Ta MB Ta 2^20 Ta 10^6
+.It Gigabyte Ta GB Ta 2^30 Ta 10^9
+.It Terabyte Ta TB Ta 2^40 Ta 10^12
+.It Petabyte Ta PB Ta 2^50 Ta 10^15
+.It Exabyte Ta EB Ta 2^60 Ta 10^18
+.It Zettabyte Ta ZB Ta 2^70 Ta 10^21
+.It Yottabyte Ta YB Ta 2^80 Ta 10^24
+.El
+.Pp
+The following table lists common bit rates as a power of ten.
+.Bl -column -offset 2n \
+"Megabit per second" "Prefix" "Bit per second" "Byte per second"
+.It Sy Name Ta Sy Prefix Ta Sy Bit per second Ta Sy Byte per second
+.It Bit per second Ta bit/s Ta 1 Ta 0.125
+.It Byte per second Ta B/s Ta 8 Ta 1
+.It Kilobit per second Ta kbit/s Ta 10^3 Ta 125
+.It Kilobyte per second Ta kB/s Ta 8 * 10^3 Ta 1000
+.It Megabit per second Ta Mbit/s Ta 10^6 Ta 125000
+.It Megabyte per second Ta MB/s Ta 8 * 10^6 Ta 100
+.It Gigabit per second Ta Gbit/s Ta 10^9 Ta 12500
+.It Gigabyte per second Ta GB/s Ta 8 * 10^9 Ta 10
+.It Terabit per second Ta Tbit/s Ta 10^12 Ta 1250
+.It Terabyte per second Ta TB/s Ta 8 * 10^12 Ta 1
+.El
+.Pp
+The following table lists common orders of magnitude as a power of ten.
+.Bl -column -offset 2n \
+"Septillionth" "Order" "Prefix" "Symbol" "Decimal"
+.It Sy Name Ta Sy Order Ta Sy Prefix Ta Sy Symbol Ta Sy Decimal
+.It Septillionth Ta 10^-24 Ta yocto Ta y Ta 0.0001
+.It Sextillionth Ta 10^-21 Ta zepto Ta z Ta 0.1
+.It Quintillionth Ta 10^-18 Ta atto Ta a Ta 0.01
+.It Quadrillionth Ta 10^-15 Ta femto Ta f Ta 0.001
+.It Trillionth Ta 10^-12 Ta pico Ta p Ta 0.0001
+.It Billionth Ta 10^-9 Ta nano Ta n Ta 0.1
+.It Millionth Ta 10^-6 Ta micro  Ta mu Ta 0.01
+.It Thousandth Ta 10^-3 Ta milli Ta m Ta 0.001
+.It Hundredth Ta 10^-2 Ta centi Ta c Ta 0.01
+.It Tenth Ta 10^-1 Ta deci Ta d Ta 0.1
+.It One Ta 10^0 Ta - Ta - Ta 

svn commit: r359773 - head/lib/libc/stdio

2020-04-10 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Fri Apr 10 09:37:20 2020
New Revision: 359773
URL: https://svnweb.freebsd.org/changeset/base/359773

Log:
  Add HISTORY section to getc(3)
  
  PR:   240269
  Submitted by: Gordon Bergling
  Differential Revision:https://reviews.freebsd.org/D24295

Modified:
  head/lib/libc/stdio/getc.3

Modified: head/lib/libc/stdio/getc.3
==
--- head/lib/libc/stdio/getc.3  Fri Apr 10 09:27:18 2020(r359772)
+++ head/lib/libc/stdio/getc.3  Fri Apr 10 09:37:20 2020(r359773)
@@ -32,7 +32,7 @@
 .\" @(#)getc.3 8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd January 10, 2003
+.Dd April 4, 2020
 .Dt GETC 3
 .Os
 .Sh NAME
@@ -153,6 +153,22 @@ and
 .Fn getchar_unlocked
 functions conform to
 .St -p1003.1-2001 .
+.Sh HISTORY
+The
+.Fn getc
+and
+.Fn getw
+functions appeared in a similar form in
+.At v1 ;
+and were integrated into stdio in
+.At v7 ;
+.Fn getchar
+in
+.At v4 ;
+and
+.Fn fgetc
+in
+.At v7 .
 .Sh BUGS
 Since
 .Dv EOF
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359772 - head/lib/libc/stdlib

2020-04-10 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Fri Apr 10 09:27:18 2020
New Revision: 359772
URL: https://svnweb.freebsd.org/changeset/base/359772

Log:
  exit(3): Add HISTORY section
  
  PR:   240259
  Submitted by: Gordon Bergling
  Obtained from:OpenBSD
  Differential Revision:https://reviews.freebsd.org/D24146

Modified:
  head/lib/libc/stdlib/exit.3

Modified: head/lib/libc/stdlib/exit.3
==
--- head/lib/libc/stdlib/exit.3 Fri Apr 10 09:12:41 2020(r359771)
+++ head/lib/libc/stdlib/exit.3 Fri Apr 10 09:27:18 2020(r359772)
@@ -32,7 +32,7 @@
 .\" @(#)exit.3 8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd May 28, 2018
+.Dd March 22, 2020
 .Dt EXIT 3
 .Os
 .Sh NAME
@@ -131,3 +131,8 @@ and
 .Fn _Exit
 functions conform to
 .St -isoC-99 .
+.Sh HISTORY
+The
+.Fn exit
+function appeared in
+.At v1 .
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359771 - head/lib/libc/gen

2020-04-10 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Fri Apr 10 09:12:41 2020
New Revision: 359771
URL: https://svnweb.freebsd.org/changeset/base/359771

Log:
  arc4random(3): Expand the SEE ALSO section
  
  Submitted by: Gordon Bergling
  Approved by:  brueffer@
  Obtained from:NetBSD
  Differential Revision:https://reviews.freebsd.org/D23716

Modified:
  head/lib/libc/gen/arc4random.3

Modified: head/lib/libc/gen/arc4random.3
==
--- head/lib/libc/gen/arc4random.3  Fri Apr 10 07:44:02 2020
(r359770)
+++ head/lib/libc/gen/arc4random.3  Fri Apr 10 09:12:41 2020
(r359771)
@@ -31,7 +31,7 @@
 .\" Manual page, using -mandoc macros
 .\" $FreeBSD$
 .\"
-.Dd March 21, 2019
+.Dd April 10, 2020
 .Dt ARC4RANDOM 3
 .Os
 .Sh NAME
@@ -121,6 +121,13 @@ functions using
 .Xr rand 3 ,
 .Xr rand48 3 ,
 .Xr random 3
+.Rs
+.%A Daniel J. Bernstein
+.%T ChaCha, a variant of Salsa20
+.%D 2008-01-28
+.%O Document ID: 4027b5256e17b9796842e6d0f68b0b5e
+.%U http://cr.yp.to/papers.html#chacha
+.Re
 .Sh HISTORY
 These functions first appeared in
 .Ox 2.1 .
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359629 - head/lib/msun/man

2020-04-04 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Sat Apr  4 07:43:47 2020
New Revision: 359629
URL: https://svnweb.freebsd.org/changeset/base/359629

Log:
  Fix typo

Modified:
  head/lib/msun/man/cos.3

Modified: head/lib/msun/man/cos.3
==
--- head/lib/msun/man/cos.3 Sat Apr  4 04:03:10 2020(r359628)
+++ head/lib/msun/man/cos.3 Sat Apr  4 07:43:47 2020(r359629)
@@ -83,6 +83,6 @@ These functions conform to
 .St -isoC-99 .
 .Sh HISTORY
 The
-.Fn sin
+.Fn cos
 function first appeared in
 .At v1 .
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359326 - head/lib/msun/man

2020-03-26 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Thu Mar 26 11:24:43 2020
New Revision: 359326
URL: https://svnweb.freebsd.org/changeset/base/359326

Log:
  Add HISTORY sections to log(3) man page
  
  PR:   240265
  Submitted by: gbergl...@gmail.com
  Approved by:  bcr@(mentor), imp@
  MFC after:1 day
  Differential Revision:https://reviews.freebsd.org/D24148

Modified:
  head/lib/msun/man/log.3

Modified: head/lib/msun/man/log.3
==
--- head/lib/msun/man/log.3 Thu Mar 26 09:23:16 2020(r359325)
+++ head/lib/msun/man/log.3 Thu Mar 26 11:24:43 2020(r359326)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd June 3, 2013
+.Dd March 22, 2020
 .Dt LOG 3
 .Os
 .Sh NAME
@@ -135,3 +135,14 @@ and
 .Fn log1pl
 functions conform to
 .St -isoC-99 .
+.Sh HISTORY
+The
+.Fn log
+function first appeared in
+.At v1 ;
+.Fn log10
+in
+.At v7 ;
+.Fn log1p
+in
+.Bx 4.3 .
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359308 - stable/12/usr.sbin/ypldap

2020-03-25 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Wed Mar 25 20:16:24 2020
New Revision: 359308
URL: https://svnweb.freebsd.org/changeset/base/359308

Log:
  MFC r359282
  Correct path in EXAMPLES ypldap.conf.5
  
  Submitted by: a...@i.org.ua
  Approved by:  bcr@(mentor)

Modified:
  stable/12/usr.sbin/ypldap/ypldap.conf.5
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/usr.sbin/ypldap/ypldap.conf.5
==
--- stable/12/usr.sbin/ypldap/ypldap.conf.5 Wed Mar 25 19:12:19 2020
(r359307)
+++ stable/12/usr.sbin/ypldap/ypldap.conf.5 Wed Mar 25 20:16:24 2020
(r359308)
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd $Mdocdate: January 13 2016 $
+.Dd $Mdocdate: March 22 2020 $
 .Dt YPLDAP.CONF 5
 .Os
 .Sh NAME
@@ -155,7 +155,7 @@ Use the supplied LDAP filter to retrieve password entr
 .It Pa /etc/ypldap.conf
 .Xr ypldap 8
 configuration file.
-.It Pa /usr/share/example/ypldap/ypldap.conf
+.It Pa /usr/share/examples/ypldap/ypldap.conf
 .Xr ypldap 8
 configuration file example.
 .El
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359282 - head/usr.sbin/ypldap

2020-03-24 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Tue Mar 24 19:12:28 2020
New Revision: 359282
URL: https://svnweb.freebsd.org/changeset/base/359282

Log:
  Correct path in EXAMPLES ypldap.conf.5
  
  PR:   244743
  Submitted by: a...@i.org.ua
  Patch by: a...@i.org.ua
  Approved by:  bcr@(mentor), 0mp
  MFC after:1 day
  Differential Revision:https://reviews.freebsd.org/D24144

Modified:
  head/usr.sbin/ypldap/ypldap.conf.5

Modified: head/usr.sbin/ypldap/ypldap.conf.5
==
--- head/usr.sbin/ypldap/ypldap.conf.5  Tue Mar 24 19:09:37 2020
(r359281)
+++ head/usr.sbin/ypldap/ypldap.conf.5  Tue Mar 24 19:12:28 2020
(r359282)
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd $Mdocdate: January 13 2016 $
+.Dd $Mdocdate: March 22 2020 $
 .Dt YPLDAP.CONF 5
 .Os
 .Sh NAME
@@ -155,7 +155,7 @@ Use the supplied LDAP filter to retrieve password entr
 .It Pa /etc/ypldap.conf
 .Xr ypldap 8
 configuration file.
-.It Pa /usr/share/example/ypldap/ypldap.conf
+.It Pa /usr/share/examples/ypldap/ypldap.conf
 .Xr ypldap 8
 configuration file example.
 .El
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359281 - stable/12/lib/libc/gen

2020-03-24 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Tue Mar 24 19:09:37 2020
New Revision: 359281
URL: https://svnweb.freebsd.org/changeset/base/359281

Log:
  MFC r359210:
  Add HISTORY section to exec(3)
  
  Submitted by: gbergl...@gmail.com
  Approved by:  bcr@(mentor)

Modified:
  stable/12/lib/libc/gen/exec.3
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/lib/libc/gen/exec.3
==
--- stable/12/lib/libc/gen/exec.3   Tue Mar 24 18:43:23 2020
(r359280)
+++ stable/12/lib/libc/gen/exec.3   Tue Mar 24 19:09:37 2020
(r359281)
@@ -28,7 +28,7 @@
 .\" @(#)exec.3 8.3 (Berkeley) 1/24/94
 .\" $FreeBSD$
 .\"
-.Dd July 28, 2018
+.Dd March 22, 2020
 .Dt EXEC 3
 .Os
 .Sh NAME
@@ -310,6 +310,11 @@ and
 functions
 conform to
 .St -p1003.1-88 .
+.Sh HISTORY
+The
+.Fn exec
+function appeared in
+.At v1 .
 The
 .Fn execvP
 function first appeared in
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359227 - head/lib/libc/gen

2020-03-22 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Sun Mar 22 20:10:05 2020
New Revision: 359227
URL: https://svnweb.freebsd.org/changeset/base/359227

Log:
  fix typo in exec man page
  
  PR:   240258
  Submitted by: gbergl...@gmail.com
  Reported by:  kib@
  Approved by:  bcr@(mentor, implicit)
  MFC after:2 days
  Differential Revision:https://reviews.freebsd.org/D24145

Modified:
  head/lib/libc/gen/exec.3

Modified: head/lib/libc/gen/exec.3
==
--- head/lib/libc/gen/exec.3Sun Mar 22 20:00:12 2020(r359226)
+++ head/lib/libc/gen/exec.3Sun Mar 22 20:10:05 2020(r359227)
@@ -314,7 +314,7 @@ conform to
 The
 .Fn exec
 function appeared in
-.At v1.
+.At v1 .
 The
 .Fn execvP
 function first appeared in
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r359210 - head/lib/libc/gen

2020-03-22 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Sun Mar 22 12:57:49 2020
New Revision: 359210
URL: https://svnweb.freebsd.org/changeset/base/359210

Log:
  exec man page: Add HISTORY section
  
  PR:   240258
  Submitted by: gbergl...@gmail.com
  Patch by: gbergl...@gmail.com
  Approved by:  bcr@(mentor)
  MFC after:2 days
  Differential Revision:https://reviews.freebsd.org/D24145

Modified:
  head/lib/libc/gen/exec.3

Modified: head/lib/libc/gen/exec.3
==
--- head/lib/libc/gen/exec.3Sun Mar 22 11:44:24 2020(r359209)
+++ head/lib/libc/gen/exec.3Sun Mar 22 12:57:49 2020(r359210)
@@ -28,7 +28,7 @@
 .\" @(#)exec.3 8.3 (Berkeley) 1/24/94
 .\" $FreeBSD$
 .\"
-.Dd July 28, 2018
+.Dd March 22, 2020
 .Dt EXEC 3
 .Os
 .Sh NAME
@@ -310,6 +310,11 @@ and
 functions
 conform to
 .St -p1003.1-88 .
+.Sh HISTORY
+The
+.Fn exec
+function appeared in
+.At v1.
 The
 .Fn execvP
 function first appeared in
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r358817 - stable/12/share/man/man3

2020-03-09 Thread Sergio Carlavilla Delgado
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: gbergl...@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.38.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 .
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r358479 - in stable/12: lib/msun/man share/man/man7 usr.sbin/ac usr.sbin/sa

2020-02-29 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Sat Feb 29 22:51:27 2020
New Revision: 358479
URL: https://svnweb.freebsd.org/changeset/base/358479

Log:
  MFC r358099:
  Add some HISTORY sections to manpages
  
 environ(7) was in AT Version 7
 ac(8): Add a HISTORY section
 sa(8): Add a HISTORY section
 sqrt(3): Add the actual sqrt function to the HISTORY section
  
 Obtained from: OpenBSD
  
  Submitted by: gbergl...@gmail.com
  Approved by:  bcr@(mentor)
  Differential Revision:https://reviews.freebsd.org/D23693

Modified:
  stable/12/lib/msun/man/sqrt.3
  stable/12/share/man/man7/environ.7
  stable/12/usr.sbin/ac/ac.8
  stable/12/usr.sbin/sa/sa.8
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/lib/msun/man/sqrt.3
==
--- stable/12/lib/msun/man/sqrt.3   Sat Feb 29 22:31:23 2020
(r358478)
+++ stable/12/lib/msun/man/sqrt.3   Sat Feb 29 22:51:27 2020
(r358479)
@@ -28,7 +28,7 @@
 .\" from: @(#)sqrt.3   6.4 (Berkeley) 5/6/91
 .\" $FreeBSD$
 .\"
-.Dd March 5, 2011
+.Dd February 15, 2020
 .Dt SQRT 3
 .Os
 .Sh NAME
@@ -113,6 +113,9 @@ The
 function appeared in
 .Bx 4.3 .
 The
+.Fn sqrt
+function appeared in
+.At v2 .
 .Fn sqrtl
 function appeared in
 .Fx 8.0 .

Modified: stable/12/share/man/man7/environ.7
==
--- stable/12/share/man/man7/environ.7  Sat Feb 29 22:31:23 2020
(r358478)
+++ stable/12/share/man/man7/environ.7  Sat Feb 29 22:51:27 2020
(r358479)
@@ -28,7 +28,7 @@
 .\"@(#)environ.7   8.3 (Berkeley) 4/19/94
 .\" $FreeBSD$
 .\"
-.Dd April 12, 2003
+.Dd February 14, 2020
 .Dt ENVIRON 7
 .Os
 .Sh NAME
@@ -261,4 +261,4 @@ built-in command in
 The
 .Nm
 manual page appeared in
-.Bx 4.2 .
+.At v7 .

Modified: stable/12/usr.sbin/ac/ac.8
==
--- stable/12/usr.sbin/ac/ac.8  Sat Feb 29 22:31:23 2020(r358478)
+++ stable/12/usr.sbin/ac/ac.8  Sat Feb 29 22:51:27 2020(r358479)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 21, 2010
+.Dd February 14, 2020
 .Dt AC 8
 .Os
 .Sh NAME
@@ -126,6 +126,16 @@ ac -p -t "!ttyd*" > other
 .Xr getutxent 3 ,
 .Xr init 8 ,
 .Xr sa 8
+.Sh HISTORY
+An
+.Nm
+command appeared in
+.At v5 .
+This version of
+.Nm
+was written for
+.Nx 0.9a
+from the specification provided by various systems' manual pages.
 .\" .Sh NOTES
 .\" If COMPAT_SUNOS is defined
 .\" .Nm ac

Modified: stable/12/usr.sbin/sa/sa.8
==
--- stable/12/usr.sbin/sa/sa.8  Sat Feb 29 22:31:23 2020(r358478)
+++ stable/12/usr.sbin/sa/sa.8  Sat Feb 29 22:51:27 2020(r358479)
@@ -29,7 +29,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd May 18, 2007
+.Dd February 14, 2020
 .Dt SA 8
 .Os
 .Sh NAME
@@ -234,6 +234,14 @@ per-user accounting summary database
 .Xr acct 5 ,
 .Xr ac 8 ,
 .Xr accton 8
+.Sh HISTORY
+.Nm
+first appeared in
+.At v5 .
+.Nm
+was rewritten for
+.Nx 0.9a
+from the specification provided by various systems' manual pages.
 .Sh AUTHORS
 .An Chris G. Demetriou Aq Mt c...@postgres.berkeley.edu
 .Sh CAVEATS
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r358352 - head/share/man/man3

2020-02-26 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Wed Feb 26 19:16:23 2020
New Revision: 358352
URL: https://svnweb.freebsd.org/changeset/base/358352

Log:
  Add HISTORY sections to tree(3), stdarg(3) and sigevent(3)
  
  Submitted by: gbergling_gmail.com
  Approved by:  bcr@(mentor)
  MFC after:1 week
  Differential Revision:https://reviews.freebsd.org/D23832

Modified:
  head/share/man/man3/sigevent.3
  head/share/man/man3/stdarg.3
  head/share/man/man3/tree.3

Modified: head/share/man/man3/sigevent.3
==
--- head/share/man/man3/sigevent.3  Wed Feb 26 19:15:08 2020
(r358351)
+++ head/share/man/man3/sigevent.3  Wed Feb 26 19:16:23 2020
(r358352)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 15, 2016
+.Dd February 25, 2020
 .Dt SIGEVENT 3
 .Os
 .Sh NAME
@@ -119,6 +119,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: head/share/man/man3/stdarg.3
==
--- head/share/man/man3/stdarg.3Wed Feb 26 19:15:08 2020
(r358351)
+++ head/share/man/man3/stdarg.3Wed Feb 26 19:16:23 2020
(r358352)
@@ -32,7 +32,7 @@
 .\"@(#)stdarg.38.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: head/share/man/man3/tree.3
==
--- head/share/man/man3/tree.3  Wed Feb 26 19:15:08 2020(r358351)
+++ head/share/man/man3/tree.3  Wed Feb 26 19:16:23 2020(r358352)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd September 28, 2019
+.Dd February 25, 2020
 .Dt TREE 3
 .Os
 .Sh NAME
@@ -697,6 +697,9 @@ to indicate an error.
 .Sh SEE ALSO
 .Xr arb 3 ,
 .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 .
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r358099 - in head: lib/msun/man share/man/man7 usr.sbin/ac usr.sbin/sa

2020-02-19 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Wed Feb 19 12:49:49 2020
New Revision: 358099
URL: https://svnweb.freebsd.org/changeset/base/358099

Log:
  Add some HISTORY sections to manpages
  
  environ(7) was in AT Version 7
  ac(8): Add a HISTORY section
  sa(8): Add a HISTORY section
  sqrt(3): Add the actual sqrt function to the HISTORY section
  
  Obtained from: OpenBSD
  
  Submitted by: gbergl...@gmail.com
  Approved by:  bcr@(mentor)
  MFC after:1 week
  Differential Revision:https://reviews.freebsd.org/D23693

Modified:
  head/lib/msun/man/sqrt.3
  head/share/man/man7/environ.7
  head/usr.sbin/ac/ac.8
  head/usr.sbin/sa/sa.8

Modified: head/lib/msun/man/sqrt.3
==
--- head/lib/msun/man/sqrt.3Wed Feb 19 09:10:11 2020(r358098)
+++ head/lib/msun/man/sqrt.3Wed Feb 19 12:49:49 2020(r358099)
@@ -28,7 +28,7 @@
 .\" from: @(#)sqrt.3   6.4 (Berkeley) 5/6/91
 .\" $FreeBSD$
 .\"
-.Dd March 5, 2011
+.Dd February 15, 2020
 .Dt SQRT 3
 .Os
 .Sh NAME
@@ -113,6 +113,9 @@ The
 function appeared in
 .Bx 4.3 .
 The
+.Fn sqrt
+function appeared in
+.At v2 .
 .Fn sqrtl
 function appeared in
 .Fx 8.0 .

Modified: head/share/man/man7/environ.7
==
--- head/share/man/man7/environ.7   Wed Feb 19 09:10:11 2020
(r358098)
+++ head/share/man/man7/environ.7   Wed Feb 19 12:49:49 2020
(r358099)
@@ -28,7 +28,7 @@
 .\"@(#)environ.7   8.3 (Berkeley) 4/19/94
 .\" $FreeBSD$
 .\"
-.Dd April 12, 2003
+.Dd February 14, 2020
 .Dt ENVIRON 7
 .Os
 .Sh NAME
@@ -261,4 +261,4 @@ built-in command in
 The
 .Nm
 manual page appeared in
-.Bx 4.2 .
+.At v7 .

Modified: head/usr.sbin/ac/ac.8
==
--- head/usr.sbin/ac/ac.8   Wed Feb 19 09:10:11 2020(r358098)
+++ head/usr.sbin/ac/ac.8   Wed Feb 19 12:49:49 2020(r358099)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 21, 2010
+.Dd February 14, 2020
 .Dt AC 8
 .Os
 .Sh NAME
@@ -126,6 +126,16 @@ ac -p -t "!ttyd*" > other
 .Xr getutxent 3 ,
 .Xr init 8 ,
 .Xr sa 8
+.Sh HISTORY
+An
+.Nm
+command appeared in
+.At v5 .
+This version of
+.Nm
+was written for
+.Nx 0.9a
+from the specification provided by various systems' manual pages.
 .\" .Sh NOTES
 .\" If COMPAT_SUNOS is defined
 .\" .Nm ac

Modified: head/usr.sbin/sa/sa.8
==
--- head/usr.sbin/sa/sa.8   Wed Feb 19 09:10:11 2020(r358098)
+++ head/usr.sbin/sa/sa.8   Wed Feb 19 12:49:49 2020(r358099)
@@ -29,7 +29,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd May 18, 2007
+.Dd February 14, 2020
 .Dt SA 8
 .Os
 .Sh NAME
@@ -234,6 +234,14 @@ per-user accounting summary database
 .Xr acct 5 ,
 .Xr ac 8 ,
 .Xr accton 8
+.Sh HISTORY
+.Nm
+first appeared in
+.At v5 .
+.Nm
+was rewritten for
+.Nx 0.9a
+from the specification provided by various systems' manual pages.
 .Sh AUTHORS
 .An Chris G. Demetriou Aq Mt c...@postgres.berkeley.edu
 .Sh CAVEATS
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r356882 - head/share/misc

2020-01-19 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Sun Jan 19 16:24:25 2020
New Revision: 356882
URL: https://svnweb.freebsd.org/changeset/base/356882

Log:
  Add myself as a mentee of bcr
  
  Patch by: carlavilla@(doc-committer)
  Approved by:  bcr@(mentor)

Modified:
  head/share/misc/committers-doc.dot

Modified: head/share/misc/committers-doc.dot
==
--- head/share/misc/committers-doc.dot  Sun Jan 19 14:46:28 2020
(r356881)
+++ head/share/misc/committers-doc.dot  Sun Jan 19 16:24:25 2020
(r356882)
@@ -112,6 +112,7 @@ bcr -> bhd
 bcr -> sevan
 bcr -> dexter
 bcr -> sg
+bcr -> carlavilla
 
 blackend -> ale
 
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r348447 - head/share/misc

2019-05-30 Thread Sergio Carlavilla Delgado
Author: carlavilla (doc committer)
Date: Thu May 30 21:39:49 2019
New Revision: 348447
URL: https://svnweb.freebsd.org/changeset/base/348447

Log:
  Add Sergio Carlavilla (myself) to the committers doc, Gabor is going to be my 
mentor Approved by: gabor

Modified:
  head/share/misc/committers-doc.dot

Modified: head/share/misc/committers-doc.dot
==
--- head/share/misc/committers-doc.dot  Thu May 30 20:56:23 2019
(r348446)
+++ head/share/misc/committers-doc.dot  Thu May 30 21:39:49 2019
(r348447)
@@ -57,6 +57,7 @@ bhd [label="Björn Heidotting\n...@freebsd.org\n2014/1
 blackend [label="Marc Fonvieille\nblack...@freebsd.org\n2002/06/16"]
 brd [label="Brad Davis\n...@freebsd.org\n2005/06/01"]
 brueffer [label="Christian Brueffer\nbruef...@freebsd.org\n2003/01/13"]
+carlavilla [label="Sergio Carlavilla\ncarlavi...@freebsd.org\n2019/05/16"]
 chinsan [label="Chinsan Huang\nchin...@freebsd.org\n2006/09/20"]
 crees [label="Chris Rees\ncr...@freebsd.org\n2013/05/27"]
 danger [label="Daniel Gerzo\ndan...@freebsd.org\n2006/08/20"]
@@ -132,6 +133,7 @@ gabor -> manolis
 gabor -> taras
 gabor -> issyl0
 gabor -> ebrandi
+gabor -> carlavilla
 
 gjb -> wblock
 gjb -> rene
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"