Re: CVS commit: src/share/misc
On Sat, Aug 1, 2020, 6:26 PM Luke Mewburn wrote: > On 20-08-01 23:07, Taylor R Campbell wrote: > | Index: share/misc/style > | === > | RCS file: /cvsroot/src/share/misc/style,v > | retrieving revision 1.56 > | diff -p -p -u -r1.56 style > | --- share/misc/style1 Aug 2020 02:45:35 - 1.56 > | +++ share/misc/style1 Aug 2020 22:54:53 - > | @@ -241,9 +241,8 @@ main(int argc, char *argv[]) > | errno = 0; > | num = strtol(optarg, , 10); > | if (num <= 0 || *ep != '\0' || (errno == ERANGE && > | - (num == LONG_MAX || num == LONG_MIN)) ) { > | + (num == LONG_MAX || num == LONG_MIN)) ) > | errx(1, "illegal number -- %s", optarg); > | - } > | break; > > IMO, that example is a case in where if the style is "minimal braces" > that's still a good case to retain it. The if condition is across > multiple lines, and the brakes make it clearer (to me) where the statement > is. > > This all comes down to a matter of style, where some people > prefer "purple" and some prefer "orange", yet the arguments are > often claimed to be (by all concerned) as "technical reasons". > I thought the only two color choices were green and purple given the Bab 5 heritage of the project... Warner Anyway, I haven't got the motivation to bikeshed like this in NetBSD > anymore. > > Luke. >
Re: CVS commit: src/share/misc
On 20-08-01 23:07, Taylor R Campbell wrote: | Index: share/misc/style | === | RCS file: /cvsroot/src/share/misc/style,v | retrieving revision 1.56 | diff -p -p -u -r1.56 style | --- share/misc/style1 Aug 2020 02:45:35 - 1.56 | +++ share/misc/style1 Aug 2020 22:54:53 - | @@ -241,9 +241,8 @@ main(int argc, char *argv[]) | errno = 0; | num = strtol(optarg, , 10); | if (num <= 0 || *ep != '\0' || (errno == ERANGE && | - (num == LONG_MAX || num == LONG_MIN)) ) { | + (num == LONG_MAX || num == LONG_MIN)) ) | errx(1, "illegal number -- %s", optarg); | - } | break; IMO, that example is a case in where if the style is "minimal braces" that's still a good case to retain it. The if condition is across multiple lines, and the brakes make it clearer (to me) where the statement is. This all comes down to a matter of style, where some people prefer "purple" and some prefer "orange", yet the arguments are often claimed to be (by all concerned) as "technical reasons". Anyway, I haven't got the motivation to bikeshed like this in NetBSD anymore. Luke.
Re: CVS commit: src/share/misc
On 20-08-01 23:07, Taylor R Campbell wrote: | > Module Name:src | > Committed By: lukem | > Date: Sat Aug 1 02:45:36 UTC 2020 | > | > Modified Files: | > src/share/misc: style | > | > Log Message: | > style: prefer braces for single statement control statements | > | > Prefer to use { braces } around single statements after | > control statements, instead of discouraging them. | > | > Per discussion on tech-userlevel & tech-kern, where the significant | > majority of developers who responded (including current and former | > core members) prefer this new style. | | Hmm...that's not the conclusion I got from the thread. What you proposed | (https://mail-index.netbsd.org/tech-userlevel/2020/07/12/msg012536.html), | and got consensus on, was: | | - discourage braces around single statements | + permit braces around single statements | | What you committed was: | | - discourage braces around single statements | + prefer braces around single statements and add braces to all examples | | At least two core members (me and kre) preferred the change you | originally proposed over the change you committed. | | Personally I feel that braces around short statements hurt legibility | by adding unnecessary visual clutter, and make it more cumbersome to | have consistent patterns like | | if (foo() == -1) | goto fail0; | if ((x = bar()) == -1) | goto fail1; | if (baz() == -1) | goto fail2; | | which makes it more tempting to get clever with shortcuts for error | branches or with reversing the sense of the branch, and we have too | many bugs with clever shortcuts in error branches already. | | We don't have a `goto fail' problem in NetBSD -- if we did, our | toolchain would detect it with -Werror=misleading-indentation, as I | just confirmed experimentally. (Same goes for macros that expand to | multiple statements, with -Werror=multistatement-macros.) | | Can you please restore this to the change you originally suggested, | along the lines of the attached patch? | Index: share/misc/style | === | RCS file: /cvsroot/src/share/misc/style,v | retrieving revision 1.56 | diff -p -p -u -r1.56 style | --- share/misc/style1 Aug 2020 02:45:35 - 1.56 | +++ share/misc/style1 Aug 2020 22:54:53 - | @@ -241,9 +241,8 @@ main(int argc, char *argv[]) | errno = 0; | num = strtol(optarg, , 10); | if (num <= 0 || *ep != '\0' || (errno == ERANGE && | - (num == LONG_MAX || num == LONG_MIN)) ) { | + (num == LONG_MAX || num == LONG_MIN)) ) | errx(1, "illegal number -- %s", optarg); | - } | break; | case '?': | default: | @@ -256,16 +255,16 @@ main(int argc, char *argv[]) | | /* | * Space after keywords (while, for, return, switch). | -* Braces are preferred for control statements | -* with only a single statement. | +* | +* Braces around single-line bodies are optional; use discretion. | * | * Forever loops are done with for's, not while's. | */ | - for (p = buf; *p != '\0'; ++p) { | + for (p = buf; *p != '\0'; ++p) | continue; /* Explicit no-op */ | - } | for (;;) { | - stmt; | + stmt1; | + stmt2; | } | | /* | @@ -317,9 +316,8 @@ main(int argc, char *argv[]) | } | | /* No spaces after function names. */ | - if ((result = function(a1, a2, a3, a4)) == NULL) { | + if ((result = function(a1, a2, a3, a4)) == NULL) | exit(1); | - } | | /* | * Unary operators don't require spaces, binary operators do. | @@ -397,12 +395,10 @@ function(int a1, int a2, float fl, int a | * | * Use err/warn(3), don't roll your own! | */ | - if ((four = malloc(sizeof(*four))) == NULL) { | + if ((four = malloc(sizeof(*four))) == NULL) | err(1, NULL); | - } | - if ((six = (int *)overflow()) == NULL) { | + if ((six = (int *)overflow()) == NULL) | errx(1, "Number overflowed."); | - } | | /* No parentheses are needed around the return value. */ | return eight; | @@ -426,9 +422,8 @@ dirinfo(const char *p, struct stat *sb, | _DIAGASSERT(p != NULL); | _DIAGASSERT(filedesc != -1); | | - if (stat(p, sb) < 0) { | + if (stat(p, sb) < 0) | err(1, "Unable to stat %s", p); | - } | | /* | * To printf quantities that might be larger than "long", include I've reverted the change. Bikeshed away.
Re: CVS commit: src/share/misc
> Module Name:src > Committed By: lukem > Date: Sat Aug 1 02:45:36 UTC 2020 > > Modified Files: > src/share/misc: style > > Log Message: > style: prefer braces for single statement control statements > > Prefer to use { braces } around single statements after > control statements, instead of discouraging them. > > Per discussion on tech-userlevel & tech-kern, where the significant > majority of developers who responded (including current and former > core members) prefer this new style. Hmm...that's not the conclusion I got from the thread. What you proposed (https://mail-index.netbsd.org/tech-userlevel/2020/07/12/msg012536.html), and got consensus on, was: - discourage braces around single statements + permit braces around single statements What you committed was: - discourage braces around single statements + prefer braces around single statements and add braces to all examples At least two core members (me and kre) preferred the change you originally proposed over the change you committed. Personally I feel that braces around short statements hurt legibility by adding unnecessary visual clutter, and make it more cumbersome to have consistent patterns like if (foo() == -1) goto fail0; if ((x = bar()) == -1) goto fail1; if (baz() == -1) goto fail2; which makes it more tempting to get clever with shortcuts for error branches or with reversing the sense of the branch, and we have too many bugs with clever shortcuts in error branches already. We don't have a `goto fail' problem in NetBSD -- if we did, our toolchain would detect it with -Werror=misleading-indentation, as I just confirmed experimentally. (Same goes for macros that expand to multiple statements, with -Werror=multistatement-macros.) Can you please restore this to the change you originally suggested, along the lines of the attached patch? Index: share/misc/style === RCS file: /cvsroot/src/share/misc/style,v retrieving revision 1.56 diff -p -p -u -r1.56 style --- share/misc/style1 Aug 2020 02:45:35 - 1.56 +++ share/misc/style1 Aug 2020 22:54:53 - @@ -241,9 +241,8 @@ main(int argc, char *argv[]) errno = 0; num = strtol(optarg, , 10); if (num <= 0 || *ep != '\0' || (errno == ERANGE && - (num == LONG_MAX || num == LONG_MIN)) ) { + (num == LONG_MAX || num == LONG_MIN)) ) errx(1, "illegal number -- %s", optarg); - } break; case '?': default: @@ -256,16 +255,16 @@ main(int argc, char *argv[]) /* * Space after keywords (while, for, return, switch). -* Braces are preferred for control statements -* with only a single statement. +* +* Braces around single-line bodies are optional; use discretion. * * Forever loops are done with for's, not while's. */ - for (p = buf; *p != '\0'; ++p) { + for (p = buf; *p != '\0'; ++p) continue; /* Explicit no-op */ - } for (;;) { - stmt; + stmt1; + stmt2; } /* @@ -317,9 +316,8 @@ main(int argc, char *argv[]) } /* No spaces after function names. */ - if ((result = function(a1, a2, a3, a4)) == NULL) { + if ((result = function(a1, a2, a3, a4)) == NULL) exit(1); - } /* * Unary operators don't require spaces, binary operators do. @@ -397,12 +395,10 @@ function(int a1, int a2, float fl, int a * * Use err/warn(3), don't roll your own! */ - if ((four = malloc(sizeof(*four))) == NULL) { + if ((four = malloc(sizeof(*four))) == NULL) err(1, NULL); - } - if ((six = (int *)overflow()) == NULL) { + if ((six = (int *)overflow()) == NULL) errx(1, "Number overflowed."); - } /* No parentheses are needed around the return value. */ return eight; @@ -426,9 +422,8 @@ dirinfo(const char *p, struct stat *sb, _DIAGASSERT(p != NULL); _DIAGASSERT(filedesc != -1); - if (stat(p, sb) < 0) { + if (stat(p, sb) < 0) err(1, "Unable to stat %s", p); - } /* * To printf quantities that might be larger than "long", include
Re: CVS commit: src/share/misc
On 11/06/2020 10:15, Sevan Janiyan wrote: > Sync with r359561 That should've been r361673 Sevan
CVS commit: src/share/misc
Module Name:src Committed By: pgoyette Date: Mon Nov 11 04:11:53 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: Add UPC - universal product code To generate a diff of this commit: cvs rdiff -u -r1.289 -r1.290 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.289 src/share/misc/acronyms:1.290 --- src/share/misc/acronyms:1.289 Sun Oct 20 21:53:42 2019 +++ src/share/misc/acronyms Mon Nov 11 04:11:53 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.289 2019/10/20 21:53:42 sevan Exp $ +$NetBSD: acronyms,v 1.290 2019/11/11 04:11:53 pgoyette Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -574,6 +574,7 @@ TY thank you TYVM thank you very much U/L upload UGT universal greeting time +UPC Universal Product Code UR your UR {you're, you are} UTSL use the source, Luke
CVS commit: src/share/misc
Module Name:src Committed By: pgoyette Date: Mon Nov 11 04:11:53 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: Add UPC - universal product code To generate a diff of this commit: cvs rdiff -u -r1.289 -r1.290 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Nov 6 23:43:35 UTC 2019 Modified Files: src/share/misc: bsd-family-tree Log Message: sync with FreeBSD r354417 To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 src/share/misc/bsd-family-tree Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/bsd-family-tree diff -u src/share/misc/bsd-family-tree:1.75 src/share/misc/bsd-family-tree:1.76 --- src/share/misc/bsd-family-tree:1.75 Sat Jun 22 22:47:01 2019 +++ src/share/misc/bsd-family-tree Wed Nov 6 23:43:35 2019 @@ -388,18 +388,24 @@ FreeBSD 5.2 | | || | | | | |DragonFly 5.2.2 | FreeBSD| | | *--NetBSD || | 11.2 | | | 7.2|| - | macOS| | | || - | 10.14| | | OpenBSD 6.4 | - || | | | || - || | | | |DragonFly 5.4.0 - *--FreeBSD | | | v || - | 12.0 | | ||DragonFly 5.4.1 - || | |OpenBSD 6.5 | - || | ||| - || | NetBSD|| - || | 8.1 |DragonFly 5.6 - || ||| - || ||DragonFly 5.6.1 + || macOS| | | || + || 10.14| | | OpenBSD 6.4 | + || | | | | || + || | | | | |DragonFly 5.4.0 + *--FreeBSD | | | | v || + | 12.0 | | | ||DragonFly 5.4.1 + | | | | | |OpenBSD 6.5 | + | | | | | ||| + | | | | | NetBSD|| + | | | | | 8.1 |DragonFly 5.6 + | | | | ||| + | | | | ||DragonFly 5.6.1 + | | FreeBSD| ||| + | | 11.3 | ||| + | FreeBSD | |OpenBSD 6.6 | + | 12.1 | ||| + | | | ||| + | v | ||| || ||| FreeBSD 13 -current | NetBSD -current OpenBSD -current DragonFly -current || ||| @@ -786,6 +792,9 @@ OpenBSD 6.5 2019-05-01 [OBD] NetBSD 8.1 2019-06-04 [NBD] DragonFly 5.6 2019-06-17 [DFB] DragonFly 5.6.1 2019-06-19 [DFB] +FreeBSD 11.3 2019-07-09 [FBD] +OpenBSD 6.6 2019-10-17 [OBD] +FreeBSD 12.1 2019-11-04 [FBD] Bibliography @@ -850,5 +859,5 @@ Steven M. Schultz for providing 2.8BSD, Copyright (c) 1997-2012 Wolfram Schneider URL: https://svnweb.freebsd.org/base/head/share/misc/bsd-family-tree -$FreeBSD: head/share/misc/bsd-family-tree 349295 2019-06-22 22:43:40Z sevan $ -$NetBSD: bsd-family-tree,v 1.75 2019/06/22 22:47:01 sevan Exp $ +$FreeBSD: head/share/misc/bsd-family-tree 354417 2019-11-06 23:40:09Z sevan $ +$NetBSD: bsd-family-tree,v 1.76 2019/11/06 23:43:35 sevan Exp $
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Nov 6 23:43:35 UTC 2019 Modified Files: src/share/misc: bsd-family-tree Log Message: sync with FreeBSD r354417 To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 src/share/misc/bsd-family-tree Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Oct 20 21:53:43 UTC 2019 Modified Files: src/share/misc: acronyms acronyms.comp Log Message: CIA ISMS To generate a diff of this commit: cvs rdiff -u -r1.288 -r1.289 src/share/misc/acronyms cvs rdiff -u -r1.293 -r1.294 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.288 src/share/misc/acronyms:1.289 --- src/share/misc/acronyms:1.288 Mon Sep 9 12:42:52 2019 +++ src/share/misc/acronyms Sun Oct 20 21:53:42 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.288 2019/09/09 12:42:52 sevan Exp $ +$NetBSD: acronyms,v 1.289 2019/10/20 21:53:42 sevan Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -94,6 +94,7 @@ CFV call for votes CFY calling for you CG center of gravity CHANOPS channel operator status +CIA central intelligence agency CMIIW correct me if I'm wrong CNP continued [in my] next post COB close of business [day] Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.293 src/share/misc/acronyms.comp:1.294 --- src/share/misc/acronyms.comp:1.293 Sun Oct 6 15:17:39 2019 +++ src/share/misc/acronyms.comp Sun Oct 20 21:53:42 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.293 2019/10/06 15:17:39 sevan Exp $ +$NetBSD: acronyms.comp,v 1.294 2019/10/20 21:53:42 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -241,6 +241,7 @@ CHFS chip file system CHS cylinder/head/sector CI continuous integration CI {common,component} interface +CIA confidentiality, integrity, availability CIDR Classless Inter-Domain Routing CIF common intermediate format CIFS Common Internet File System @@ -769,6 +770,7 @@ ISDN integrated services digital network ISI inter-symbol interference ISL initial system load ISM industrial, scientific, [and] medical +ISMS information system management system ISN initial serial number ISO International Standards Organization ISOC Internet Society
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Oct 20 21:53:43 UTC 2019 Modified Files: src/share/misc: acronyms acronyms.comp Log Message: CIA ISMS To generate a diff of this commit: cvs rdiff -u -r1.288 -r1.289 src/share/misc/acronyms cvs rdiff -u -r1.293 -r1.294 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Oct 6 15:17:39 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: AWDL, BLE, another NAN To generate a diff of this commit: cvs rdiff -u -r1.292 -r1.293 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Oct 6 15:17:39 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: AWDL, BLE, another NAN To generate a diff of this commit: cvs rdiff -u -r1.292 -r1.293 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.292 src/share/misc/acronyms.comp:1.293 --- src/share/misc/acronyms.comp:1.292 Wed Oct 2 11:14:46 2019 +++ src/share/misc/acronyms.comp Sun Oct 6 15:17:39 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.292 2019/10/02 11:14:46 sevan Exp $ +$NetBSD: acronyms.comp,v 1.293 2019/10/06 15:17:39 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -117,6 +117,7 @@ AV anti virus AVB audio video bridging AVL Adelson-Velsky-Landis AVX advanced vector extensions +AWDL Apple wireless direct link BA byte align BAL basic assembly language BAR base address register @@ -150,6 +151,7 @@ BIU bus interface unit BKDG BIOS and kernel developer's guide BLAS basic linear algebra subprograms BLC back light control +BLE Bluetooth low energy BLOB binary large object BM bus master BMC baseboard management controller @@ -1007,6 +1009,7 @@ MWE module width encoding MX mail exchange NACK negative acknowledgement NAK negative acknowledgement +NAN neighbor awareness networking NAN not a number NAPT Network Address Port Translation NAS network attached storage
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Oct 2 11:14:46 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: DAAP DLNA To generate a diff of this commit: cvs rdiff -u -r1.291 -r1.292 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.291 src/share/misc/acronyms.comp:1.292 --- src/share/misc/acronyms.comp:1.291 Wed Sep 25 20:17:59 2019 +++ src/share/misc/acronyms.comp Wed Oct 2 11:14:46 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.291 2019/09/25 20:17:59 sevan Exp $ +$NetBSD: acronyms.comp,v 1.292 2019/10/02 11:14:46 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -332,6 +332,7 @@ CVE common vulnerabilities and exposures CVS Concurrent Versions System DA destination address DAA distributed application architecture +DAAP digital audio access protocol DAB digital audio broadcasting DAC digital [to] analog converter DAC discretionary access control @@ -401,6 +402,7 @@ DL download DLCI data link connection identifier DLE data link escape DLL dynamic link library +DLNA digital living network alliance DLP discrete logarithm problem DMA direct memory access DMI desktop management interface
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Oct 2 11:14:46 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: DAAP DLNA To generate a diff of this commit: cvs rdiff -u -r1.291 -r1.292 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Sep 25 20:17:59 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SDR To generate a diff of this commit: cvs rdiff -u -r1.290 -r1.291 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Sep 25 20:17:59 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SDR To generate a diff of this commit: cvs rdiff -u -r1.290 -r1.291 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.290 src/share/misc/acronyms.comp:1.291 --- src/share/misc/acronyms.comp:1.290 Mon Sep 9 18:11:20 2019 +++ src/share/misc/acronyms.comp Wed Sep 25 20:17:59 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.290 2019/09/09 18:11:20 sevan Exp $ +$NetBSD: acronyms.comp,v 1.291 2019/09/25 20:17:59 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1406,6 +1406,7 @@ SDL Simple Direct-media Layer SDLC {software,system,systems} development life cycle SDN software defined networking SDP Session Description Protocol +SDR software defined radio SDRAM synchronous dynamic random access memory SDS software defined storage SDT syntax-directed translation
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Sep 9 18:11:20 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: CSU UTS To generate a diff of this commit: cvs rdiff -u -r1.289 -r1.290 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.289 src/share/misc/acronyms.comp:1.290 --- src/share/misc/acronyms.comp:1.289 Tue Sep 3 21:34:03 2019 +++ src/share/misc/acronyms.comp Mon Sep 9 18:11:20 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.289 2019/09/03 21:34:03 sevan Exp $ +$NetBSD: acronyms.comp,v 1.290 2019/09/09 18:11:20 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -298,6 +298,7 @@ CR carriage return CRC cyclic redundancy check CRL carrier recovery loop CRLF carriage return line feed +CSU C start up CRT cathode ray tube CRUD create, read, update, and delete CS cable select @@ -1662,6 +1663,7 @@ UT unit test UTC coordinated universal time UTF unicode transformation formats UTP unshielded twisted pair +UTS UNIX time-sharing UUCP Unix-to-Unix Copy Protocol UUID universally unique identifier UUOC useless use of cat
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Sep 9 18:11:20 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: CSU UTS To generate a diff of this commit: cvs rdiff -u -r1.289 -r1.290 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Sep 9 12:42:52 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: GFCI, RCD To generate a diff of this commit: cvs rdiff -u -r1.287 -r1.288 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.287 src/share/misc/acronyms:1.288 --- src/share/misc/acronyms:1.287 Fri Jul 26 14:38:26 2019 +++ src/share/misc/acronyms Mon Sep 9 12:42:52 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.287 2019/07/26 14:38:26 sevan Exp $ +$NetBSD: acronyms,v 1.288 2019/09/09 12:42:52 sevan Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -190,6 +190,7 @@ GBTW get back to work GCD greatest common divisor GDPR General Data Protection Regulation GF girlfriend +GFCI ground-fault circuit interrupter GFU good for you GFY good for you GG good game @@ -463,6 +464,7 @@ QED quod erat demonstrandum QFT quoted for truth RA residential advisor RAND reasonable and non-discriminatory +RCD residual current device RFC request for comments RFD request for discussion RFE request for enhancements
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Sep 9 12:42:52 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: GFCI, RCD To generate a diff of this commit: cvs rdiff -u -r1.287 -r1.288 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Sep 3 21:34:03 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: INODE STM To generate a diff of this commit: cvs rdiff -u -r1.288 -r1.289 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Sep 3 21:34:03 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: INODE STM To generate a diff of this commit: cvs rdiff -u -r1.288 -r1.289 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.288 src/share/misc/acronyms.comp:1.289 --- src/share/misc/acronyms.comp:1.288 Mon Sep 2 10:35:15 2019 +++ src/share/misc/acronyms.comp Tue Sep 3 21:34:03 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.288 2019/09/02 10:35:15 sevan Exp $ +$NetBSD: acronyms.comp,v 1.289 2019/09/03 21:34:03 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -727,6 +727,7 @@ IMR interrupt mask register IMS information management system IMSI international mobile subscriber identity INCITS InterNational Committee for Information Technology Standards +INODE index node IO input/output IOCTL input/output control IOM input/output managers @@ -1519,6 +1520,7 @@ SSL secure sockets layer SSP stack smashing protection STC software thermal control STD state transition diagram +STM software transactional memory STOMP Streaming Text Oriented Messaging Protocol STP Spanning Tree Protocol STP shielded twisted pair
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Sep 2 10:35:15 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: PPT To generate a diff of this commit: cvs rdiff -u -r1.287 -r1.288 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Sep 2 10:35:15 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: PPT To generate a diff of this commit: cvs rdiff -u -r1.287 -r1.288 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.287 src/share/misc/acronyms.comp:1.288 --- src/share/misc/acronyms.comp:1.287 Sun Sep 1 21:55:13 2019 +++ src/share/misc/acronyms.comp Mon Sep 2 10:35:15 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.287 2019/09/01 21:55:13 sevan Exp $ +$NetBSD: acronyms.comp,v 1.288 2019/09/02 10:35:15 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1215,6 +1215,8 @@ PPP Point-to-Point Protocol PPPOA Point-to-Point Protocol over ATM PPPOE Point-to-Point Protocol over Ethernet PPR processor programming reference +PPT powerpoint +PPT punched paper tape PPU physics processing unit PRAM Parameter RAM PRBS pseudorandom bit sequence
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Sep 1 21:55:13 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: GECOS http://bitsavers.trailing-edge.com/pdf/ge/GE-6xx/CPB-1002A_GE-625_635_GECOS_Jan65.pdf To generate a diff of this commit: cvs rdiff -u -r1.286 -r1.287 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Sep 1 21:55:13 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: GECOS http://bitsavers.trailing-edge.com/pdf/ge/GE-6xx/CPB-1002A_GE-625_635_GECOS_Jan65.pdf To generate a diff of this commit: cvs rdiff -u -r1.286 -r1.287 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.286 src/share/misc/acronyms.comp:1.287 --- src/share/misc/acronyms.comp:1.286 Fri Aug 30 15:43:52 2019 +++ src/share/misc/acronyms.comp Sun Sep 1 21:55:13 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.286 2019/08/30 15:43:52 sevan Exp $ +$NetBSD: acronyms.comp,v 1.287 2019/09/01 21:55:13 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -605,6 +605,7 @@ GCM Galois counter mode GCR group-coded recording GDI Graphics Device Interface GDT global descriptor table +GECOS general comprehensive operating supervisor GEM graphics environment manager GEM graphics execution manager GENA general event notification architecture
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Aug 30 15:43:53 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SICP To generate a diff of this commit: cvs rdiff -u -r1.285 -r1.286 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Aug 30 15:43:53 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SICP To generate a diff of this commit: cvs rdiff -u -r1.285 -r1.286 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.285 src/share/misc/acronyms.comp:1.286 --- src/share/misc/acronyms.comp:1.285 Thu Aug 22 21:30:47 2019 +++ src/share/misc/acronyms.comp Fri Aug 30 15:43:52 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.285 2019/08/22 21:30:47 sevan Exp $ +$NetBSD: acronyms.comp,v 1.286 2019/08/30 15:43:52 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1423,6 +1423,7 @@ SGMII serial gigabit media independent i SGPIO serial general purpose input/output SGRAM synchronous graphics random access memory SHA secure hash algorithm +SICP structure and interpretation of computer programs SIDH supersingular isogeny Diffie-Hellman SIEM security information and event management SIF source input format
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Thu Aug 22 21:30:47 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ATF NURBS To generate a diff of this commit: cvs rdiff -u -r1.284 -r1.285 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Thu Aug 22 21:30:47 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ATF NURBS To generate a diff of this commit: cvs rdiff -u -r1.284 -r1.285 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.284 src/share/misc/acronyms.comp:1.285 --- src/share/misc/acronyms.comp:1.284 Sat Aug 17 21:14:22 2019 +++ src/share/misc/acronyms.comp Thu Aug 22 21:30:47 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.284 2019/08/17 21:14:22 sevan Exp $ +$NetBSD: acronyms.comp,v 1.285 2019/08/22 21:30:47 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -109,6 +109,8 @@ AT advanced technology ATA advanced technology attachment ATAPI advanced technology attachment packet interface ATC address translation cache +ATF ARM trusted firmware +ATF automated testing framework ATM asynchronous transfer mode ATX advanced technology extended AV anti virus @@ -1044,6 +1046,7 @@ NSA National Security Agency NTM non-deterministic Turing machine NTP Network Time Protocol NUMA non-uniform memory access +NURBS non-uniform rational basis spline NVMM NetBSD Virtual Machine Monitor NVMM non-volatile main memory NVRAM non-volatile random access memory
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Aug 17 21:14:22 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: RDP RFB VNC To generate a diff of this commit: cvs rdiff -u -r1.283 -r1.284 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Aug 17 21:14:22 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: RDP RFB VNC To generate a diff of this commit: cvs rdiff -u -r1.283 -r1.284 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.283 src/share/misc/acronyms.comp:1.284 --- src/share/misc/acronyms.comp:1.283 Sun Jul 28 21:43:39 2019 +++ src/share/misc/acronyms.comp Sat Aug 17 21:14:22 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.283 2019/07/28 21:43:39 sevan Exp $ +$NetBSD: acronyms.comp,v 1.284 2019/08/17 21:14:22 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1281,11 +1281,13 @@ RDBMS relational database management sys RDF Resource Description Framework RDM relational data model RDMA remote direct memory access +RDP remote desktop protocol RDRAM Rambus DRAM RE regular expression REPL read, evaluate, print, loop REST representational state transfer RF radio frequency +RFB remote frame buffer RFI radio frequency interference RFO request for ownership RFU reserved for future use @@ -1690,6 +1692,7 @@ VM virtual {machine,memory} VME virtual mode extension VMX vector multimedia extensions VMX virtual machine extensions +VNC virtual network computing VOD video on demand VPD vital product data VPN virtual private network
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Jul 28 21:43:39 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SGIs from the MIPS & ARM world :) To generate a diff of this commit: cvs rdiff -u -r1.282 -r1.283 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Jul 28 21:43:39 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SGIs from the MIPS & ARM world :) To generate a diff of this commit: cvs rdiff -u -r1.282 -r1.283 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.282 src/share/misc/acronyms.comp:1.283 --- src/share/misc/acronyms.comp:1.282 Tue Jul 23 18:13:47 2019 +++ src/share/misc/acronyms.comp Sun Jul 28 21:43:39 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.282 2019/07/23 18:13:47 sevan Exp $ +$NetBSD: acronyms.comp,v 1.283 2019/07/28 21:43:39 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1412,6 +1412,8 @@ SFI software fault isolation SFTP SSH File Transfer Protocol SFTP Serial File Transfer Protocol SFTP Simple File Transfer Protocol +SGI Silicon Graphics, Inc +SGI software generated interrupt SGMII serial gigabit media independent interface SGPIO serial general purpose input/output SGRAM synchronous graphics random access memory
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jul 26 14:38:26 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: TTTR To generate a diff of this commit: cvs rdiff -u -r1.286 -r1.287 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jul 26 14:38:26 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: TTTR To generate a diff of this commit: cvs rdiff -u -r1.286 -r1.287 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.286 src/share/misc/acronyms:1.287 --- src/share/misc/acronyms:1.286 Sat Jun 22 12:45:28 2019 +++ src/share/misc/acronyms Fri Jul 26 14:38:26 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.286 2019/06/22 12:45:28 sevan Exp $ +$NetBSD: acronyms,v 1.287 2019/07/26 14:38:26 sevan Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -561,6 +561,7 @@ TTBOMK to the best of my knowledge TTFN ta ta for now TTM to the moderator TTT thought that too +TTTR time-tagged time-resolved TTYL talk to you later TTYS talk to you soon TWAIN thing without an interesting name
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 23 18:13:47 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: REPL To generate a diff of this commit: cvs rdiff -u -r1.281 -r1.282 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.281 src/share/misc/acronyms.comp:1.282 --- src/share/misc/acronyms.comp:1.281 Sat Jul 20 13:29:36 2019 +++ src/share/misc/acronyms.comp Tue Jul 23 18:13:47 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.281 2019/07/20 13:29:36 sevan Exp $ +$NetBSD: acronyms.comp,v 1.282 2019/07/23 18:13:47 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1283,6 +1283,7 @@ RDM relational data model RDMA remote direct memory access RDRAM Rambus DRAM RE regular expression +REPL read, evaluate, print, loop REST representational state transfer RF radio frequency RFI radio frequency interference
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 23 18:13:47 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: REPL To generate a diff of this commit: cvs rdiff -u -r1.281 -r1.282 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jul 20 13:29:36 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: CACLS DIA ICACLS To generate a diff of this commit: cvs rdiff -u -r1.280 -r1.281 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jul 20 13:29:36 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: CACLS DIA ICACLS To generate a diff of this commit: cvs rdiff -u -r1.280 -r1.281 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.280 src/share/misc/acronyms.comp:1.281 --- src/share/misc/acronyms.comp:1.280 Thu Jul 11 15:21:46 2019 +++ src/share/misc/acronyms.comp Sat Jul 20 13:29:36 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.280 2019/07/11 15:21:46 sevan Exp $ +$NetBSD: acronyms.comp,v 1.281 2019/07/20 13:29:36 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -195,6 +195,7 @@ BW bandwidth BWM block-write mode BUAG big ugly ASCII graphic CA certificate authority +CACLS change access control lists CAD computer-aided design CAM computer assisted manufacturing CAM conditional access module @@ -386,6 +387,7 @@ DFT discrete Fourier transform DGL data generation language DH Diffie-Hellman DHCP Dynamic Host Configuration Protocol +DIA dedicated Internet access DIFS distributed inter-frame space DIMM dual inline memory module DIRT design in real time @@ -680,6 +682,7 @@ IBS instruction based sampling IBSS independent basic service set IC integrated circuit ICA independent computer architecture +ICACLS integrity control access control lists ICB Internet Citizen's Band ICE in-circuit emulator ICE internal compiler error
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Thu Jul 11 15:21:46 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: WPAD To generate a diff of this commit: cvs rdiff -u -r1.279 -r1.280 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.279 src/share/misc/acronyms.comp:1.280 --- src/share/misc/acronyms.comp:1.279 Fri Jul 5 15:33:07 2019 +++ src/share/misc/acronyms.comp Thu Jul 11 15:21:46 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.279 2019/07/05 15:33:07 sevan Exp $ +$NetBSD: acronyms.comp,v 1.280 2019/07/11 15:21:46 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1726,6 +1726,7 @@ WP word processor WP write protect WPA Wi-Fi Protected Access WPA2 Wi-Fi Protected Access II +WPAD web proxy auto-discovery protocol WPS Wi-Fi Protected Setup WRAM window random access memory WS web services
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Thu Jul 11 15:21:46 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: WPAD To generate a diff of this commit: cvs rdiff -u -r1.279 -r1.280 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jul 5 15:33:07 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SEMB SGPIO To generate a diff of this commit: cvs rdiff -u -r1.278 -r1.279 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.278 src/share/misc/acronyms.comp:1.279 --- src/share/misc/acronyms.comp:1.278 Thu Jul 4 15:31:37 2019 +++ src/share/misc/acronyms.comp Fri Jul 5 15:33:07 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.278 2019/07/04 15:31:37 sevan Exp $ +$NetBSD: acronyms.comp,v 1.279 2019/07/05 15:33:07 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1399,6 +1399,7 @@ SEA synchronous external abort SEGV segmentation violation SED self-encrypting drive SED stream editor +SEMB serial ATA enclosure management bridge SEO search engine optimization SES SCSI enclosure services SFC sequential function chart @@ -1408,6 +1409,7 @@ SFTP SSH File Transfer Protocol SFTP Serial File Transfer Protocol SFTP Simple File Transfer Protocol SGMII serial gigabit media independent interface +SGPIO serial general purpose input/output SGRAM synchronous graphics random access memory SHA secure hash algorithm SIDH supersingular isogeny Diffie-Hellman
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jul 5 15:33:07 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SEMB SGPIO To generate a diff of this commit: cvs rdiff -u -r1.278 -r1.279 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Thu Jul 4 15:31:37 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ADDDC AEDC IBPI LMCE POR PPR SAF-TE SDDC SSC WHEA To generate a diff of this commit: cvs rdiff -u -r1.277 -r1.278 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.277 src/share/misc/acronyms.comp:1.278 --- src/share/misc/acronyms.comp:1.277 Wed Jul 3 20:26:16 2019 +++ src/share/misc/acronyms.comp Thu Jul 4 15:31:37 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.277 2019/07/03 20:26:16 sevan Exp $ +$NetBSD: acronyms.comp,v 1.278 2019/07/04 15:31:37 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -23,12 +23,14 @@ ACU automatic calling unit ADB Apple desktop bus ADC analog [to] digital converter ADD acronym driven development +ADDDC adaptive double DRAM device correction ADO active data objects ADP automatic data processing ADPCM adaptive differential pulse code modulation ADS alternate data stream ADSL asymmetric digital subscriber line ADT abstract data type +AEDC advanced error detection and correction AER advanced error reporting AES Advanced Encryption Standard AFP Apple Filing Protocol @@ -673,6 +675,7 @@ IAAS infrastructure as a service IANA Internet Assigned Numbers Authority IBC iterated block cipher IBM International Business Machines +IBPI international blinking pattern interpretation IBS instruction based sampling IBSS independent basic service set IC integrated circuit @@ -837,6 +840,7 @@ LLF low level format LLMNR link-local multicast name resolution LLVM Low Level Virtual Machine LM long mode +LMCE local machine check exception LMI local management interface LMM link management mode LMP link management protocol @@ -1188,6 +1192,7 @@ POE power over ethernet POF probability of failure POP Post Office Protocol POP power on password +POR plan of record POSIX Portable Operating System Interface [for Unix] POST power on self test POTS plain old telephone system @@ -1202,6 +1207,7 @@ PPM pages per minute PPP Point-to-Point Protocol PPPOA Point-to-Point Protocol over ATM PPPOE Point-to-Point Protocol over Ethernet +PPR processor programming reference PPU physics processing unit PRAM Parameter RAM PRBS pseudorandom bit sequence @@ -1342,6 +1348,7 @@ SAAS software as a service SABRE Semi-automated business research environment SACD super audio compact disc SAD security association database +SAF-TE SCSI accessed fault-tolerant enclosure SAGE Semi-automated ground environment SAL {service,system} abstraction layer SAM serial access memory @@ -1376,6 +1383,7 @@ SCP system control processor SCPI system control and power interface SCSI Small Computer System Interface SCTP Stream Control Transmission Protocol +SDDC software defined data center SDEI software delegated exception interface SDI symbol deinterleave SDK software development kit @@ -1483,6 +1491,7 @@ SS stack segment SSA static single assignment SSAP source service access point SSB single-sideband modulation +SSC spread spectrum clock SSD solid state drive SSE streaming SIMD extensions SSFDC solid state floppy disc card @@ -1701,6 +1710,7 @@ WEP Wired Equivalent Privacy WFI wait for interrupt WFQ weighted fair queuing WH write hit +WHEA Windows hardware error architecture WIFI wireless fidelity WLAN wireless local area network WM write miss
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Thu Jul 4 15:31:37 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ADDDC AEDC IBPI LMCE POR PPR SAF-TE SDDC SSC WHEA To generate a diff of this commit: cvs rdiff -u -r1.277 -r1.278 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Jul 3 20:26:16 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: HEVC IDCT VDPAU VLD To generate a diff of this commit: cvs rdiff -u -r1.276 -r1.277 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.276 src/share/misc/acronyms.comp:1.277 --- src/share/misc/acronyms.comp:1.276 Tue Jul 2 16:10:15 2019 +++ src/share/misc/acronyms.comp Wed Jul 3 20:26:16 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.276 2019/07/02 16:10:15 sevan Exp $ +$NetBSD: acronyms.comp,v 1.277 2019/07/03 20:26:16 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -641,6 +641,7 @@ HDMI High-Definition Multimedia Interfac HDTV high-definition television HECI host embedded controller interface HEST hardware error source table +HEVC high efficiency video coding HF high frequency HFM highest frequency mode HFS hierarchical file system @@ -685,6 +686,7 @@ ICT information and communications techn ICW initialization command word IDA Intel dynamic acceleration IDCMP Intuition direct communication message port +IDCT inverse discrete cosine transform IDE integrated development environment IDE integrated drive electronics IDPS intrusion detection [and] prevention system @@ -1650,6 +1652,7 @@ VCM virtual channel memory VCO voltage-controlled oscillator VCP virtual chassis port VCS version control system +VDPAU Video Decode and Presentation API for Unix VES virtual execution system VESA Video Electronics Standards Association VFO variable-frequency oscillator @@ -1662,6 +1665,7 @@ VIM Vi IMproved VIPT virtually indexed, physically tagged VIVT virtually indexed, virtually tagged VLAN virtual local area network +VLD variable-length decoding VLIW very long instruction word VLSI very large scale integration VLSM variable length subnet mask
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Jul 3 20:26:16 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: HEVC IDCT VDPAU VLD To generate a diff of this commit: cvs rdiff -u -r1.276 -r1.277 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 2 16:10:15 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: MHU, SCPI and another SCP To generate a diff of this commit: cvs rdiff -u -r1.275 -r1.276 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.275 src/share/misc/acronyms.comp:1.276 --- src/share/misc/acronyms.comp:1.275 Tue Jul 2 15:53:50 2019 +++ src/share/misc/acronyms.comp Tue Jul 2 16:10:15 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.275 2019/07/02 15:53:50 sevan Exp $ +$NetBSD: acronyms.comp,v 1.276 2019/07/02 16:10:15 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -910,6 +910,7 @@ MFC Microsoft Foundation Classes MFM modified frequency modulation MFU most frequently used MGCP media gateway control protocol +MHU message handling unit MI machine-independent MI machine interface MIB management information base @@ -1369,6 +1370,8 @@ SCM source code management SCM storage-class memory SCO synchronous connection orientated SCP secure copy +SCP system control processor +SCPI system control and power interface SCSI Small Computer System Interface SCTP Stream Control Transmission Protocol SDEI software delegated exception interface
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 2 16:10:15 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: MHU, SCPI and another SCP To generate a diff of this commit: cvs rdiff -u -r1.275 -r1.276 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 2 15:53:51 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: DTB, DTC, and another DTS from the world of device trees To generate a diff of this commit: cvs rdiff -u -r1.274 -r1.275 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.274 src/share/misc/acronyms.comp:1.275 --- src/share/misc/acronyms.comp:1.274 Tue Jul 2 15:46:06 2019 +++ src/share/misc/acronyms.comp Tue Jul 2 15:53:50 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.274 2019/07/02 15:46:06 sevan Exp $ +$NetBSD: acronyms.comp,v 1.275 2019/07/02 15:53:50 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -441,11 +441,14 @@ DSN delivery status notification DSO dynamic shared object DSP digital signal processor DSSS direct sequence spread spectrum +DTB device tree blob +DTC device tree compiler DTD document type definition DTE data terminal equipment DTE dumb terminal emulator DTL diode-transistor logic DTLS datagram transport layer security +DTS device tree source DTS digital thermal sensor DUT device under test DVB digital video broadcasting
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 2 15:53:51 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: DTB, DTC, and another DTS from the world of device trees To generate a diff of this commit: cvs rdiff -u -r1.274 -r1.275 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 2 15:46:06 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SBSA To generate a diff of this commit: cvs rdiff -u -r1.273 -r1.274 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.273 src/share/misc/acronyms.comp:1.274 --- src/share/misc/acronyms.comp:1.273 Sun Jun 30 11:22:54 2019 +++ src/share/misc/acronyms.comp Tue Jul 2 15:46:06 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.273 2019/06/30 11:22:54 sevan Exp $ +$NetBSD: acronyms.comp,v 1.274 2019/07/02 15:46:06 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1350,6 +1350,7 @@ SASL simple authentication [and] securit SATA serial advanced technology attachment SAX simple API for XML SB sound blaster +SBSA server base system architecture SBU standard build unit SC store conditional SCA source code analyzer
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jul 2 15:46:06 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SBSA To generate a diff of this commit: cvs rdiff -u -r1.273 -r1.274 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Jun 30 11:22:54 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SPAN To generate a diff of this commit: cvs rdiff -u -r1.272 -r1.273 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.272 src/share/misc/acronyms.comp:1.273 --- src/share/misc/acronyms.comp:1.272 Sat Jun 29 10:34:59 2019 +++ src/share/misc/acronyms.comp Sun Jun 30 11:22:54 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.272 2019/06/29 10:34:59 sevan Exp $ +$NetBSD: acronyms.comp,v 1.273 2019/06/30 11:22:54 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1449,6 +1449,7 @@ SOM system on module SP service pack SP stack pointer SPA storage pool allocator +SPAN switched port analyzer SPARC scalable processor architecture SPARQL SPARQL Protocol and RDF Query Language SPD security policy database
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Jun 30 11:22:54 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SPAN To generate a diff of this commit: cvs rdiff -u -r1.272 -r1.273 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 29 10:34:59 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: GARP MMRP MRP MVR MWRP PAGP PVRST SABRE SAGE SRR STRG WTD To generate a diff of this commit: cvs rdiff -u -r1.271 -r1.272 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.271 src/share/misc/acronyms.comp:1.272 --- src/share/misc/acronyms.comp:1.271 Fri Jun 28 10:47:12 2019 +++ src/share/misc/acronyms.comp Sat Jun 29 10:34:59 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.271 2019/06/28 10:47:12 sevan Exp $ +$NetBSD: acronyms.comp,v 1.272 2019/06/29 10:34:59 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -589,6 +589,7 @@ FUS fast user switching FWH firmware hub FWS folding white space GAL generic array logic +GARP generic attribute registration protocol GAS generic address structure GC garbage collector GCM Galois counter mode @@ -935,6 +936,7 @@ MMF multi-mode fiber MMIC monolithic microwave integrated circuit MMIO memory mapped input/output MMORPG massive multiplayer online role playing game +MMRP multiple MAC registration protocol MMU memory management unit MMX matrix math extension MMX multimedia extension @@ -956,6 +958,7 @@ MPS multiprocessor specification MQTT Message Queuing Telemetry Transport MR modem ready MRO method resolution order +MRP multiple registration protocol MRU most recently used MS Microsoft MSAN Memory Sanitizer @@ -978,6 +981,8 @@ MTU maximum transmission unit MUA mail user agent MUD multi-user domain MVCC multiversion concurrency control +MVR multicast VLAN registration +MVRP multiple VLAN registration protocol MWE module width encoding MX mail exchange NACK negative acknowledgement @@ -1086,6 +1091,7 @@ PA physical address PAAS platform as a service PAC phase-amplitude converter PAE physical address extension +PAGP port aggregation protocol PAL phase alternating line PAL programmable array logic PAM pluggable authentication modules @@ -1219,6 +1225,7 @@ PV physical volume PVC permanent virtual circuit PVG physical volume group PVI protected-mode virtual interrupt +PVRST Per-VLAN rapid spanning tree PVST Per-VLAN Spanning Tree PWM pulse width modulation PXE preboot execution environment @@ -1326,8 +1333,10 @@ SA security association SA source address SA structured analysis SAAS software as a service +SABRE Semi-automated business research environment SACD super audio compact disc SAD security association database +SAGE Semi-automated ground environment SAL {service,system} abstraction layer SAM serial access memory SAM sum addressed memory @@ -1458,6 +1467,7 @@ SQL Structured Query Language SRAM static random access memory SRC sample rate conversion SRP SCSI RDMA protocol +SRR shaped round robin SS self-snoop SS stack segment SSA static single assignment @@ -1476,6 +1486,7 @@ STD state transition diagram STOMP Streaming Text Oriented Messaging Protocol STP Spanning Tree Protocol STP shielded twisted pair +STRG spanning tree root guard SUN Stanford University Network SUS Single Unix Specification SUT system under test @@ -1695,6 +1706,7 @@ WPS Wi-Fi Protected Setup WRAM window random access memory WS web services WTC write through caching +WTD weighted tail drop WWAN wireless wide area network WWW world wide web WYSIAYG what you see is all you get
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 29 10:34:59 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: GARP MMRP MRP MVR MWRP PAGP PVRST SABRE SAGE SRR STRG WTD To generate a diff of this commit: cvs rdiff -u -r1.271 -r1.272 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 28 10:47:13 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: RADIUS SCCP TACACS XTACACS To generate a diff of this commit: cvs rdiff -u -r1.270 -r1.271 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.270 src/share/misc/acronyms.comp:1.271 --- src/share/misc/acronyms.comp:1.270 Sun Jun 23 17:17:18 2019 +++ src/share/misc/acronyms.comp Fri Jun 28 10:47:12 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.270 2019/06/23 17:17:18 alnsn Exp $ +$NetBSD: acronyms.comp,v 1.271 2019/06/28 10:47:12 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1238,6 +1238,7 @@ RA remote assistance RA resource affinity RA router advertisement RAD rapid application development +RADIUS remote authentication dial-in user service RAID redundant array of {independent,inexpensive} disks RAM random access memory RAS reliability, availability and serviceability @@ -1346,6 +1347,7 @@ SCA source code analyzer SCADA supervisory control and data acquisition SCC single chip cloud SCC source code control +SCCP skinny call control protocol SCCS Source Code Control System SCI scalable coherent interface SCI system control interrupt @@ -1490,6 +1492,7 @@ SWIG simplified wrapper [and] interface SYR symbol timing recovery TA test assertion TA transmitter address +TACACS terminal access controller access-control system TAI international atomic time TAO track at once TAOCP The Art of Computer Programming @@ -1712,6 +1715,7 @@ XSL extensible stylesheet language XSLT extensible stylesheet language transformations XSS cross site scripting XT extended technology +XTACACS extended terminal access controller access-control system XTI X/Open transport interface XUL XML user interface language YACC yet another compiler compiler
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 28 10:47:13 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: RADIUS SCCP TACACS XTACACS To generate a diff of this commit: cvs rdiff -u -r1.270 -r1.271 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: alnsn Date: Sun Jun 23 17:17:18 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: Fix a typo. To generate a diff of this commit: cvs rdiff -u -r1.269 -r1.270 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.269 src/share/misc/acronyms.comp:1.270 --- src/share/misc/acronyms.comp:1.269 Sun Jun 23 16:04:34 2019 +++ src/share/misc/acronyms.comp Sun Jun 23 17:17:18 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.269 2019/06/23 16:04:34 sevan Exp $ +$NetBSD: acronyms.comp,v 1.270 2019/06/23 17:17:18 alnsn Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -130,7 +130,7 @@ BEDO burst extended data output BER basic encoding rules BER bit error {rate,ratio} BERT boot error record table -BFB bidirectional forwarding detection +BFD bidirectional forwarding detection BFD binary {file,format} descriptor BFKL big fscking kernel lock BFS breadth-first search
CVS commit: src/share/misc
Module Name:src Committed By: alnsn Date: Sun Jun 23 17:17:18 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: Fix a typo. To generate a diff of this commit: cvs rdiff -u -r1.269 -r1.270 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Jun 23 16:04:34 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ALSA DDI DKI EDSAC EDVAC ENIAC NDIS ODI UDI To generate a diff of this commit: cvs rdiff -u -r1.268 -r1.269 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.268 src/share/misc/acronyms.comp:1.269 --- src/share/misc/acronyms.comp:1.268 Sat Jun 22 12:45:55 2019 +++ src/share/misc/acronyms.comp Sun Jun 23 16:04:34 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.268 2019/06/22 12:45:55 sevan Exp $ +$NetBSD: acronyms.comp,v 1.269 2019/06/23 16:04:34 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -41,6 +41,7 @@ AL access list AL active link ALE address latch enable ALS ambient light sensor +ALSA advanced Linux sound architecture ALU arithmetic and logical unit ALUA asymmetric logical unit access AM access method @@ -358,6 +359,7 @@ DCT discrete cosine transform DCU data cache unit DDC display data channel DDE dynamic data exchange +DDI device drivers interface DDK device driver kit DDL data description language DDR double data rate @@ -385,6 +387,7 @@ DHCP Dynamic Host Configuration Protocol DIFS distributed inter-frame space DIMM dual inline memory module DIRT design in real time +DKI driver/kernel interface DL diode logic DL discrete logarithm DL download @@ -483,6 +486,8 @@ EDGE explicit data graph execution EDID extended display identification data EDO extended data out EDS electronical data sheet +EDSAC electronic delay storage automatic calculator +EDVAC electronic discrete variable automatic computer EEE energy efficient ethernet EEPROM electrically erasable programmable read only memory EFI extensible firmware interface @@ -501,6 +506,7 @@ EMI electro-magnetic interference EMP electro-magnetic pulse EMR electro-magnetic radiation EMACS Editor MACroS +ENIAC electronic numerical integrator and computer EOF end of file EOI end of interrupt EOIS end of interactive support @@ -989,6 +995,7 @@ NCSI network connectivity status indicat NCQ native command queuing ND neighbor discovery NDFA nondeterministic finite automaton +NDIS network driver interface specification NE numeric error NEWS Network extensible Window System NFA nondeterministic finite automaton @@ -1031,6 +1038,7 @@ OBOE off by one error OCL object constraint language OCR optical character recognition ODE offline device environment +ODI open data-link interface ODM object data manager ODCM on-demand clock modulation ODT on-die termination @@ -1572,6 +1580,7 @@ UC uncacheable UCS uniform-cost search UCS unified computing system UCS universal coded character set +UDI uniform driver interface UDMA ultra DMA UDO ultra density optical UDP User Datagram Protocol
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sun Jun 23 16:04:34 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ALSA DDI DKI EDSAC EDVAC ENIAC NDIS ODI UDI To generate a diff of this commit: cvs rdiff -u -r1.268 -r1.269 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 22 22:47:01 UTC 2019 Modified Files: src/share/misc: bsd-family-tree Log Message: sync with FreeBSD r349295 To generate a diff of this commit: cvs rdiff -u -r1.74 -r1.75 src/share/misc/bsd-family-tree Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/bsd-family-tree diff -u src/share/misc/bsd-family-tree:1.74 src/share/misc/bsd-family-tree:1.75 --- src/share/misc/bsd-family-tree:1.74 Tue Jun 18 21:07:21 2019 +++ src/share/misc/bsd-family-tree Sat Jun 22 22:47:01 2019 @@ -135,7 +135,7 @@ FreeBSD 4.0 | | | | | NetBSD 1. | FreeBSD 3.5.1 | | | ||| | | | | | ||| | *---FreeBSD 4.1| | | ||| | - | | | | (?) ||| | + | | | | | ||| | | FreeBSD 4.1.1 | | / ||| | | | | | / ||| | | FreeBSD 4.2 Darwin/ | NetBSD 1.4.3| | @@ -372,7 +372,7 @@ FreeBSD 5.2 | | | | | 10.13| ||OpenBSD 6.1 | | FreeBSD | | | ||| DragonFly 5.0.0 | 11.1 FreeBSD| | ||| | - | |10.4 | | ||OpenBSD 6.2 DragonFly 5.0.1 + | |10.4 | | ||OpenBSD 6.2 DragonFly 5.0.1 | | | | ||| | | `--. | | | NetBSD | DragonFly 5.0.2 || | | | 7.1.1 | | @@ -381,7 +381,7 @@ FreeBSD 5.2 | | || | | | 7.1.2 `--.| || | | ||| || | | `-. OpenBSD 6.3 | - || | *--NetBSD | | DragonFly 5.2.0 + || | *--NetBSD | |DragonFly 5.2.0 || | | 8.0 | || || | | | | |DragonFly 5.2.1 || | | | | || @@ -399,6 +399,8 @@ FreeBSD 5.2 | | || | NetBSD|| || | 8.1 |DragonFly 5.6 || ||| + || ||DragonFly 5.6.1 + || ||| FreeBSD 13 -current | NetBSD -current OpenBSD -current DragonFly -current || ||| vv vvv @@ -783,6 +785,7 @@ DragonFly 5.4.1 2018-12-24 [DFB] OpenBSD 6.5 2019-05-01 [OBD] NetBSD 8.1 2019-06-04 [NBD] DragonFly 5.6 2019-06-17 [DFB] +DragonFly 5.6.1 2019-06-19 [DFB] Bibliography @@ -847,5 +850,5 @@ Steven M. Schultz for providing 2.8BSD, Copyright (c) 1997-2012 Wolfram Schneider URL: https://svnweb.freebsd.org/base/head/share/misc/bsd-family-tree -$FreeBSD: head/share/misc/bsd-family-tree 349177 2019-06-18 21:02:40Z sevan $ -$NetBSD: bsd-family-tree,v 1.74 2019/06/18 21:07:21 sevan Exp $ +$FreeBSD: head/share/misc/bsd-family-tree 349295 2019-06-22 22:43:40Z sevan $ +$NetBSD: bsd-family-tree,v 1.75 2019/06/22 22:47:01 sevan Exp $
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 22 22:47:01 UTC 2019 Modified Files: src/share/misc: bsd-family-tree Log Message: sync with FreeBSD r349295 To generate a diff of this commit: cvs rdiff -u -r1.74 -r1.75 src/share/misc/bsd-family-tree Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 22 12:45:28 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: WRR To generate a diff of this commit: cvs rdiff -u -r1.285 -r1.286 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.285 src/share/misc/acronyms:1.286 --- src/share/misc/acronyms:1.285 Wed Jun 12 16:49:10 2019 +++ src/share/misc/acronyms Sat Jun 22 12:45:28 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.285 2019/06/12 16:49:10 sevan Exp $ +$NetBSD: acronyms,v 1.286 2019/06/22 12:45:28 sevan Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -595,6 +595,7 @@ WIBNI wouldn't it be nice if WIP work in progress WMNC watch me not care WOMBAT waste of money, brain, and time +WRR weighted round robin WRT with respect to WTB {waiting,want,willing} to buy WTF where's the food
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 22 12:45:55 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: EAV, IRDP To generate a diff of this commit: cvs rdiff -u -r1.267 -r1.268 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.267 src/share/misc/acronyms.comp:1.268 --- src/share/misc/acronyms.comp:1.267 Fri Jun 21 22:04:26 2019 +++ src/share/misc/acronyms.comp Sat Jun 22 12:45:55 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.267 2019/06/21 22:04:26 sevan Exp $ +$NetBSD: acronyms.comp,v 1.268 2019/06/22 12:45:55 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -458,6 +458,8 @@ EAI Email Address Internationalization EAI Enterprise Application Integration EAP Extensible Authentication Protocol EAPOL EAP over Lan +EAV entity-attribute-value model +EAV ethernet audio/video bridging EBCDIC Extended Binary Coded Decimal Interchange Code EBDA Extended BIOS Data Area EBNF extended backus-naur form @@ -727,6 +729,7 @@ IPS intrusion prevention system IPSEC Internet Protocol Security IRC Internet Relay Chat IRDA infrared data association +IRDP ICMP Router Discovery Protocol IRQ interrupt request IRQL interrupt request level IRR interrupt request register
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 22 12:45:55 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: EAV, IRDP To generate a diff of this commit: cvs rdiff -u -r1.267 -r1.268 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Sat Jun 22 12:45:28 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: WRR To generate a diff of this commit: cvs rdiff -u -r1.285 -r1.286 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 21 22:04:26 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: BFD COA CST DS DSCP IST MAB MCLAG TDR To generate a diff of this commit: cvs rdiff -u -r1.266 -r1.267 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.266 src/share/misc/acronyms.comp:1.267 --- src/share/misc/acronyms.comp:1.266 Mon Jun 17 15:53:20 2019 +++ src/share/misc/acronyms.comp Fri Jun 21 22:04:26 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.266 2019/06/17 15:53:20 sevan Exp $ +$NetBSD: acronyms.comp,v 1.267 2019/06/21 22:04:26 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -129,6 +129,7 @@ BEDO burst extended data output BER basic encoding rules BER bit error {rate,ratio} BERT boot error record table +BFB bidirectional forwarding detection BFD binary {file,format} descriptor BFKL big fscking kernel lock BFS breadth-first search @@ -261,6 +262,7 @@ CMYK cyan magenta yellow black CN {common,canonical} name CNC computer numerical control CNR carrier-to-noise ratio +COA change of authority COF current operating frequency COFDM coded orthogonal frequency division multiplexing COFF common object file format @@ -309,6 +311,7 @@ CSP cryptographic service provider CSR control [and] status registers CSRG Computer Systems Research Group CSS cascading style sheets +CST common spanning tree CSV comma-separated values CTF compact c type format CTM close to metal @@ -420,9 +423,11 @@ DRI direct rendering infrastructure DRM digital rights management DRRS display refresh rate switching DS debug store +DS differentiated services DSA digital signature algorithm DSAP destination service access point DSB double-sideband modulation +DSCP differentiated services code point DSDT differentiated system descriptor table DSF device special file DSL dataset and snapshot layer @@ -740,6 +745,7 @@ ISOC Internet Society ISP Internet service provider ISR in-service register ISR interrupt service routine +IST internal spanning tree IST interrupt stack table ISV independent software vendor IT information technology @@ -855,6 +861,7 @@ LVDS Low-Voltage Differential Signaling LWP light-weight process LZSS Lempel Ziv Storer Szymanski LZW Lempel Ziv Welch +MAB MAC authentication bypass MAC mandatory access control MAC {media,medium} access control MAC message authentication {check,code} @@ -871,6 +878,7 @@ MCC multiversion concurrency control MCE machine check exception MCGA Multi-Color Graphics Array MCH memory controller hub +MCLAG multi-chassis link aggregation MCM multi-chip module MCQ memory controlled queue MD machine-dependent @@ -1491,6 +1499,7 @@ TDM time division multiplexing TDMA time division multiple access TDOA time difference of arrival TDP thermal design {point,power} +TDR time-domain reflectometry TECO Text Editor and Corrector TFT thin film transistor TFTP Trivial File Transfer Protocol
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 21 22:04:26 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: BFD COA CST DS DSCP IST MAB MCLAG TDR To generate a diff of this commit: cvs rdiff -u -r1.266 -r1.267 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Jun 17 21:51:56 UTC 2019 Modified Files: src/share/misc: bsd-family-tree Log Message: Sync with FreeBSD r349157 To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 src/share/misc/bsd-family-tree Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/bsd-family-tree diff -u src/share/misc/bsd-family-tree:1.72 src/share/misc/bsd-family-tree:1.73 --- src/share/misc/bsd-family-tree:1.72 Wed Sep 5 04:01:32 2018 +++ src/share/misc/bsd-family-tree Mon Jun 17 21:51:56 2019 @@ -363,21 +363,27 @@ FreeBSD 5.2 | | | 11.1 FreeBSD| | | | | | |10.4 | | | OpenBSD 6.2 DragonFly 5.0.1 | | | | | | | - | | | | NetBSD 7.1.1| DragonFly 5.0.2 - | | | | | | | - | | | | NetBSD 7.1.2| | - | | | | | | | - | | | | | OpenBSD 6.3 | - | | | NetBSD| | DragonFly 5.2.0 - | | |8.0 | | | - | | | | | | DragonFly 5.2.1 - | | | | | | | - | | | | | | DragonFly 5.2.2 - | FreeBSD | | NetBSD 7.2 | | - | 11.2 | | | | | - | v | | | | | - || | v | | -FreeBSD 12 -current | NetBSD -current OpenBSD -currentDragonFly -current + | `--. | | NetBSD 7.1.1| DragonFly 5.0.2 + || | | | | | + || | | NetBSD 7.1.2| | + || | | | | | + || | | | OpenBSD 6.3 | + || | NetBSD| | DragonFly 5.2.0 + || |8.0 | | | + || | | | | DragonFly 5.2.1 + || | | | | | + || | | | | DragonFly 5.2.2 + | FreeBSD| | NetBSD 7.2 | | + | 11.2 macOS | | | | + | 10.14 | | OpenBSD 6.4 | + || | | | DragonFly 5.4.0 + *--FreeBSD | | v | | + | 12.0 | | | DragonFly 5.4.1 + || | OpenBSD 6.5 | + || NetBSD| | + ||8.1 | DragonFly 5.6 + || | | | +FreeBSD 13 -current | NetBSD -current OpenBSD -currentDragonFly -current || | | | vv v v v @@ -753,6 +759,14 @@ DragonFly 5.2.2 2018-06-18 [DFB] FreeBSD 11.2 2018-06-27 [FBD] NetBSD 8.0 2018-07-17 [NBD] NetBSD 7.2 2018-08-29 [NBD] +macOS 10.14 2018-09-24 [APL] +OpenBSD 6.4 2018-10-18 [OBD] +DragonFly 5.4.0 2018-12-03 [DFB] +FreeBSD 12.0 2018-12-11 [FBD] +DragonFly 5.4.1 2018-12-24 [DFB] +OpenBSD 6.5 2019-05-01 [OBD] +NetBSD 8.1 2019-06-04 [NBD] +DragonFly 5.6 2019-06-17 [DFB] Bibliography @@ -817,5 +831,5 @@ Steven M. Schultz for providing 2.8BSD, Copyright (c) 1997-2012 Wolfram Schneider URL: https://svnweb.freebsd.org/base/head/share/misc/bsd-family-tree -$FreeBSD: head/share/misc/bsd-family-tree 336757 2018-07-27 10:40:48Z eadler $ -$NetBSD: bsd-family-tree,v 1.72 2018/09/05 04:01:32 eadler Exp $ +$FreeBSD: head/share/misc/bsd-family-tree 349157 2019-06-17 21:46:13Z sevan $ +$NetBSD: bsd-family-tree,v 1.73 2019/06/17 21:51:56 sevan Exp $
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Jun 17 21:51:56 UTC 2019 Modified Files: src/share/misc: bsd-family-tree Log Message: Sync with FreeBSD r349157 To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 src/share/misc/bsd-family-tree Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Jun 17 15:53:20 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: CHFS To generate a diff of this commit: cvs rdiff -u -r1.265 -r1.266 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Mon Jun 17 15:53:20 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: CHFS To generate a diff of this commit: cvs rdiff -u -r1.265 -r1.266 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.265 src/share/misc/acronyms.comp:1.266 --- src/share/misc/acronyms.comp:1.265 Wed Jun 12 16:49:48 2019 +++ src/share/misc/acronyms.comp Mon Jun 17 15:53:20 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.265 2019/06/12 16:49:48 sevan Exp $ +$NetBSD: acronyms.comp,v 1.266 2019/06/17 15:53:20 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -228,6 +228,7 @@ CGA Color Graphics Adapter CGI common gateway interface CGN Carrier-Grade NAT CHAP Challenge-Handshake Authentication Protocol +CHFS chip file system CHS cylinder/head/sector CI continuous integration CI {common,component} interface
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Jun 12 16:49:48 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: APFS ASR CLI CLS VES XSLT To generate a diff of this commit: cvs rdiff -u -r1.264 -r1.265 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.264 src/share/misc/acronyms.comp:1.265 --- src/share/misc/acronyms.comp:1.264 Tue Jun 11 17:26:09 2019 +++ src/share/misc/acronyms.comp Wed Jun 12 16:49:48 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.264 2019/06/11 17:26:09 sevan Exp $ +$NetBSD: acronyms.comp,v 1.265 2019/06/12 16:49:48 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -61,6 +61,7 @@ AOL Alert-on-LAN AOS add or subtract AP access point AP application processor +APFS Apple file system API application programming interface APEI ACPI platform error interface APIC advanced programmable interrupt controller @@ -97,6 +98,7 @@ ASP auxiliary storage pool ASPM active state power management ASQ automated software quality ASR address space register +ASR Apple software restore AST abstract syntax tree AST asynchronous system trap AT access time @@ -239,7 +241,9 @@ CISC complex instruction set {computer,c CJK Chinese, Japanese, [and] Korean CLF common log format CLI command line interface +CLI common language infrastructure CLR common language runtime +CLS common language specification CLTT closed loop thermal throttling CLUT color look-up table CLV constant linear velocity @@ -309,6 +313,7 @@ CTF compact c type format CTM close to metal CTR counter [mode] CTS clear to send +CTS common type system CUA common user access CUT coordinated universal time CV control voltage @@ -1601,6 +1606,7 @@ VCM virtual channel memory VCO voltage-controlled oscillator VCP virtual chassis port VCS version control system +VES virtual execution system VESA Video Electronics Standards Association VFO variable-frequency oscillator VFS virtual file system @@ -1681,6 +1687,7 @@ XOR exclusive or XP extreme programming XSI X/Open System Interface XSL extensible stylesheet language +XSLT extensible stylesheet language transformations XSS cross site scripting XT extended technology XTI X/Open transport interface
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Jun 12 16:49:48 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: APFS ASR CLI CLS VES XSLT To generate a diff of this commit: cvs rdiff -u -r1.264 -r1.265 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Jun 12 16:49:10 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: FRAND RAND To generate a diff of this commit: cvs rdiff -u -r1.284 -r1.285 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.284 src/share/misc/acronyms:1.285 --- src/share/misc/acronyms:1.284 Fri Jun 7 13:37:35 2019 +++ src/share/misc/acronyms Wed Jun 12 16:49:10 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.284 2019/06/07 13:37:35 sevan Exp $ +$NetBSD: acronyms,v 1.285 2019/06/12 16:49:10 sevan Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -164,6 +164,7 @@ FNO from now on FOC free of charge FPS first person shooter FPS frames per second +FRAND fair, reasonable, and non-discriminatory FSDO for some definition of FSVO for some value of FTBFS fails to build from source @@ -461,6 +462,7 @@ PTV parental tunnel vision QED quod erat demonstrandum QFT quoted for truth RA residential advisor +RAND reasonable and non-discriminatory RFC request for comments RFD request for discussion RFE request for enhancements
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Wed Jun 12 16:49:10 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: FRAND RAND To generate a diff of this commit: cvs rdiff -u -r1.284 -r1.285 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: mrg Date: Wed Jun 12 04:10:26 UTC 2019 Modified Files: src/share/misc: inter.phone Log Message: update this to as much reality of 2019 as i can find on the web. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/share/misc/inter.phone Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: mrg Date: Wed Jun 12 04:10:26 UTC 2019 Modified Files: src/share/misc: inter.phone Log Message: update this to as much reality of 2019 as i can find on the web. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/share/misc/inter.phone Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/inter.phone diff -u src/share/misc/inter.phone:1.30 src/share/misc/inter.phone:1.31 --- src/share/misc/inter.phone:1.30 Thu Feb 8 10:05:54 2018 +++ src/share/misc/inter.phone Wed Jun 12 04:10:25 2019 @@ -1,6 +1,45 @@ # Country Code : City Code : City : Country -# $NetBSD: inter.phone,v 1.30 2018/02/08 10:05:54 wiz Exp $ +# $NetBSD: inter.phone,v 1.31 2019/06/12 04:10:25 mrg Exp $ # @(#)inter.phone 8.1 (Berkeley) 6/9/93 +7:317:Akmola:Republic of Kazakhstan +7:329:Aktau:Republic of Kazakhstan +7:313:Aktubinsk:Republic of Kazakhstan +7:327:Almaty:Republic of Kazakhstan +7:330:Arkalyk:Republic of Kazakhstan +7:717:Astana:Republic of Kazakhstan +7:312:Atyrau:Republic of Kazakhstan +7:321:Karaganda:Republic of Kazakhstan +7:314:Kostanai:Republic of Kazakhstan +7:324:Kzyl-Orda:Republic of Kazakhstan +7:336:Leninsk:Republic of Kazakhstan +7:318:Pavlodar:Republic of Kazakhstan +7:315:Petropavlovsk:Republic of Kazakhstan +7:322:Semipalatinsk:Republic of Kazakhstan +7:325:Shymkent:Republic of Kazakhstan +7:328:Taldykorgan:Republic of Kazakhstan +7:311:Uralsk:Republic of Kazakhstan +7:323:Ust-Kamenogorsk:Republic of Kazakhstan +7:326:Zhambyl:Republic of Kazakhstan +7:310:Zhezkazgan:Republic of Kazakhstan +7:401:Kaliningrad:Russian Federation +7:471:Kursk:Russian Federation +7:472:Belgorod:Russian Federation +7:473:Voronezh:Russian Federation +7:474:Lipetsk:Russian Federation +7:475:Tambov:Russian Federation +7:481:Smolensk:Russian Federation +7:482:Tver:Russian Federation +7:483:Bryansk:Russian Federation +7:484:Kaluga:Russian Federation +7:485:Yaroslavl:Russian Federation +7:486:Oryol:Russian Federation +7:487:Tula:Russian Federation +7:491:Ryazan:Russian Federation +7:492:Vladimir:Russian Federation +7:493:Ivanovo:Russian Federation +7:494:Kostroma:Russian Federation +7:495:Moscow:Russian Federation +7:496:Moscow:Russian Federation 20:2:Cairo:Egypt, Arab Rep. of 20:3:Alexandria:Egypt, Arab Rep. of 20:66:Port Said:Egypt, Arab Rep. of @@ -97,7 +136,6 @@ 41:52:Winterthur:Switzerland 41:61:Basel:Switzerland 41:62:Argovia:Switzerland -423:::Liechtenstein 43:1:Vienna:Austria 43:316:Graz:Austria 43:512:Innsbruck:Austria @@ -117,11 +155,14 @@ 44:131:Edinburgh, Scot.:United Kingdom 44:1344:Bracknell, Eng.:United Kingdom 44:141:Glasgow, Scot.:United Kingdom +44:1481:Guernsey:United Kingdom 44:1484:Huddersfield, Eng.:United Kingdom 44:1485:Hillington, Eng.:United Kingdom 44:1494:High Wycombe, Eng.:United Kingdom 44:151:Liverpool, Eng.:United Kingdom 44:161:Manchester, Eng.:United Kingdom +44:1534:Bailiwick of Jersey:United Kingdom +44:1624:Isle of Man:United Kingdom 44:1628:Maidenhead, Eng.:United Kingdom 44:1752:Plymouth, Eng.:United Kingdom 44:1753:Slough, Eng.:United Kingdom @@ -228,6 +269,7 @@ 52:681:Los Mochis:Mexico 52:682:La Paz:Mexico 52:684:Cabo San Lucas:Mexico +53:::Cuba 54:1:Buenos Aires:Argentina 54:21:La Plata:Argentina 54:41:Rosario:Argentina @@ -299,6 +341,7 @@ 82:51:Pusan:Korea, Rep. of 82:53:Taegu:Korea, Rep. of 82:62:Kwangju:Korea, Rep. of +84:::Vietnam 86:1:Beijing:China, People's Rep. of 86:20:Ghuangzhou:China, People's Rep. of 86:21:Shanghai:China, People's Rep. of @@ -317,13 +360,16 @@ 91:44:Madras:India 92:21:Karachi:Pakistan 92:51:Islamabad:Pakistan +93:::Afghanistan 94:1:Colombo Central:Sri Lanka, Dem. Soc. Rep. of 94:8:Kandy:Sri Lanka, Dem. Soc. Rep. of +95:::Republic of the Union of Myanmar 98:21:Teheran:Iran 98:31:Esfahan:Iran 98:41:Tabriz:Iran 98:51:Mashad:Iran 98:631:Abadan:Iran +211:::South Sudan, Republic of 212:7:Rabat:Morocco, Kingdom of 213:::Algeria 216:1:Tunis:Tunisia @@ -332,6 +378,8 @@ 218:61:Benghazi:Libyan Arab People's Socialist Jamahiriya (Libyan A.P.S.J.) 220:::Gambia 221:::Senegal Republic +222:::Mauritania +223:::Mali, Republic of 224:4:Conakry:Guinea, People's Rev. Rep. 225:::Ivory Coast Rep. of 226:::Upper Volta (Burkina Faso) @@ -340,47 +388,85 @@ 229:::Benin, People's Rep. of 230:::Mauritius 231:::Liberia +232:::Sierra Leone 233:21:Accra:Ghana 234:1:Lagos:Nigeria, Fed. Rep. of 234:22:Ibadan:Nigeria, Fed. Rep. of 234:64:Kano:Nigeria, Fed. Rep. of +235:::Chad +236:::Central African Republic 237:::Cameroon, United Rep. of 238:::Cape Verde Islands +239:::Call Sao Tome and Principe +240:::Equatorial Guinea 241:::Gabon Republic +242:::Republic of the Congo 243:12:Kinshasa:Zaire, Rep. of 243:222:Lubumbashi:Zaire, Rep. of +244:::Angola +245:::Guinea-Bissau +246::British Indian Ocean Territory:United Kingdom 247:::Ascension Island +248:::Seychelles +249:::Sudan,
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 11 17:26:10 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: MRO To generate a diff of this commit: cvs rdiff -u -r1.263 -r1.264 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 11 17:26:10 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: MRO To generate a diff of this commit: cvs rdiff -u -r1.263 -r1.264 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.263 src/share/misc/acronyms.comp:1.264 --- src/share/misc/acronyms.comp:1.263 Sat Jun 8 13:13:01 2019 +++ src/share/misc/acronyms.comp Tue Jun 11 17:26:09 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.263 2019/06/08 13:13:01 pgoyette Exp $ +$NetBSD: acronyms.comp,v 1.264 2019/06/11 17:26:09 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -932,6 +932,7 @@ MPS memory pool system MPS multiprocessor specification MQTT Message Queuing Telemetry Transport MR modem ready +MRO method resolution order MRU most recently used MS Microsoft MSAN Memory Sanitizer
CVS commit: src/share/misc
Module Name:src Committed By: pgoyette Date: Sat Jun 8 13:13:01 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: Add MAMR To generate a diff of this commit: cvs rdiff -u -r1.262 -r1.263 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.262 src/share/misc/acronyms.comp:1.263 --- src/share/misc/acronyms.comp:1.262 Fri Jun 7 11:41:44 2019 +++ src/share/misc/acronyms.comp Sat Jun 8 13:13:01 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.262 2019/06/07 11:41:44 sevan Exp $ +$NetBSD: acronyms.comp,v 1.263 2019/06/08 13:13:01 pgoyette Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -853,6 +853,7 @@ MAC mandatory access control MAC {media,medium} access control MAC message authentication {check,code} MADT multiple APIC descriptor table +MAMR microwave-assisted magnetic recording MB megabyte MBA multi-boot agent MBR master boot record
CVS commit: src/share/misc
Module Name:src Committed By: pgoyette Date: Sat Jun 8 13:13:01 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: Add MAMR To generate a diff of this commit: cvs rdiff -u -r1.262 -r1.263 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 13:37:36 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: LSD To generate a diff of this commit: cvs rdiff -u -r1.283 -r1.284 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms diff -u src/share/misc/acronyms:1.283 src/share/misc/acronyms:1.284 --- src/share/misc/acronyms:1.283 Mon May 27 16:54:38 2019 +++ src/share/misc/acronyms Fri Jun 7 13:37:35 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms,v 1.283 2019/05/27 16:54:38 sevan Exp $ +$NetBSD: acronyms,v 1.284 2019/06/07 13:37:35 sevan Exp $ 10Q thank you 10X thanks 1337 elite ("leet") @@ -335,6 +335,7 @@ LOIC low orbit ion cannon LOL laughing out loud LP long playing [record] LPR license plate recognition +LSD lysergic acid diethylamide LTNS long time no see LWYL laugh with you later M management & operations
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 13:37:36 UTC 2019 Modified Files: src/share/misc: acronyms Log Message: LSD To generate a diff of this commit: cvs rdiff -u -r1.283 -r1.284 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 11:41:44 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: VROC To generate a diff of this commit: cvs rdiff -u -r1.261 -r1.262 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.261 src/share/misc/acronyms.comp:1.262 --- src/share/misc/acronyms.comp:1.261 Fri Jun 7 11:36:12 2019 +++ src/share/misc/acronyms.comp Fri Jun 7 11:41:44 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.261 2019/06/07 11:36:12 sevan Exp $ +$NetBSD: acronyms.comp,v 1.262 2019/06/07 11:41:44 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1625,6 +1625,7 @@ VR virtual reality VRAM video random access memory VRF virtual routing and forwarding VRM voltage regulator module +VROC Virtual RAID On CPU VRRP Virtual Router Redundancy Protocol VSTP VLAN Spanning Tree Protocol VTP VLAN Trunking Protocol
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 11:41:44 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: VROC To generate a diff of this commit: cvs rdiff -u -r1.261 -r1.262 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 11:36:12 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: AOC To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.260 src/share/misc/acronyms.comp:1.261 --- src/share/misc/acronyms.comp:1.260 Fri Jun 7 10:52:40 2019 +++ src/share/misc/acronyms.comp Fri Jun 7 11:36:12 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.260 2019/06/07 10:52:40 sevan Exp $ +$NetBSD: acronyms.comp,v 1.261 2019/06/07 11:36:12 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -56,6 +56,7 @@ AN Arabic number ANR application not responding ANSI American National Standards Institute AO analog output +AOC add-on card AOL Alert-on-LAN AOS add or subtract AP access point
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 11:36:12 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: AOC To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 10:52:40 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: LS VCCP VCP To generate a diff of this commit: cvs rdiff -u -r1.259 -r1.260 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Fri Jun 7 10:52:40 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: LS VCCP VCP To generate a diff of this commit: cvs rdiff -u -r1.259 -r1.260 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.259 src/share/misc/acronyms.comp:1.260 --- src/share/misc/acronyms.comp:1.259 Tue Jun 4 18:01:18 2019 +++ src/share/misc/acronyms.comp Fri Jun 7 10:52:40 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.259 2019/06/04 18:01:18 sevan Exp $ +$NetBSD: acronyms.comp,v 1.260 2019/06/07 10:52:40 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -822,6 +822,7 @@ LRC longitudinal redundancy check LRM left-to-right mark LRO left-to-right override LRU least recently used +LS link state LSAN Leak Sanitizer LSB Linux standards base LSB least significant {bit,byte} @@ -1591,9 +1592,11 @@ VAX virtual address extension VB Visual Basic VCA variable-gain amplifier VCC common collector voltage +VCCP virtual chassis control protocol VCF voltage-controlled filter VCM virtual channel memory VCO voltage-controlled oscillator +VCP virtual chassis port VCS version control system VESA Video Electronics Standards Association VFO variable-frequency oscillator
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 4 18:01:18 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ISE To generate a diff of this commit: cvs rdiff -u -r1.258 -r1.259 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.258 src/share/misc/acronyms.comp:1.259 --- src/share/misc/acronyms.comp:1.258 Tue Jun 4 17:46:28 2019 +++ src/share/misc/acronyms.comp Tue Jun 4 18:01:18 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.258 2019/06/04 17:46:28 sevan Exp $ +$NetBSD: acronyms.comp,v 1.259 2019/06/04 18:01:18 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -722,6 +722,7 @@ IRTF Internet Research Task Force IS information system ISA industry standard architecture ISA instruction set architecture +ISE instant secure erase ISDN integrated services digital network ISI inter-symbol interference ISL initial system load
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 4 18:01:18 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: ISE To generate a diff of this commit: cvs rdiff -u -r1.258 -r1.259 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 4 17:46:28 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SED To generate a diff of this commit: cvs rdiff -u -r1.257 -r1.258 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.257 src/share/misc/acronyms.comp:1.258 --- src/share/misc/acronyms.comp:1.257 Tue Jun 4 17:43:23 2019 +++ src/share/misc/acronyms.comp Tue Jun 4 17:46:28 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.257 2019/06/04 17:43:23 sevan Exp $ +$NetBSD: acronyms.comp,v 1.258 2019/06/04 17:46:28 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1339,6 +1339,8 @@ SDS software defined storage SDT syntax-directed translation SEA synchronous external abort SEGV segmentation violation +SED self-encrypting drive +SED stream editor SEO search engine optimization SES SCSI enclosure services SFC sequential function chart
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 4 17:46:28 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: SED To generate a diff of this commit: cvs rdiff -u -r1.257 -r1.258 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: sevan Date: Tue Jun 4 17:43:23 UTC 2019 Modified Files: src/share/misc: acronyms.comp Log Message: Add another SMP from the world of storage and SES To generate a diff of this commit: cvs rdiff -u -r1.256 -r1.257 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. Modified files: Index: src/share/misc/acronyms.comp diff -u src/share/misc/acronyms.comp:1.256 src/share/misc/acronyms.comp:1.257 --- src/share/misc/acronyms.comp:1.256 Tue Jun 4 17:36:02 2019 +++ src/share/misc/acronyms.comp Tue Jun 4 17:43:23 2019 @@ -1,4 +1,4 @@ -$NetBSD: acronyms.comp,v 1.256 2019/06/04 17:36:02 sevan Exp $ +$NetBSD: acronyms.comp,v 1.257 2019/06/04 17:43:23 sevan Exp $ 3WHS three-way handshake 8VSB 8-state vestigial side band modulation AA anti-aliasing @@ -1385,6 +1385,7 @@ SMF single mode fiber SMI structure of management information SMI system management interrupt SMM system management mode +SMP serial management protocol SMP symmetric multiprocessing SMT simultaneous multithreading SMTP Simple Mail Transfer Protocol