Module Name: src
Committed By: andvar
Date: Sat Jul 31 20:51:32 UTC 2021
Modified Files:
src/lib/libc/sys: _lwp_create.2
src/lib/libedit: tty.h
src/sys/arch/atari/pci: pci_vga.c
src/sys/arch/hpcmips/include: sysconf.h
src/sys/dev/hpc: hpcfbio.h
src/sys/dev/isa: tcic2_isa.c
Log Message:
s/dependend/dependent/
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/libc/sys/_lwp_create.2
cvs rdiff -u -r1.23 -r1.24 src/lib/libedit/tty.h
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/atari/pci/pci_vga.c
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/hpcmips/include/sysconf.h
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/hpc/hpcfbio.h
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/isa/tcic2_isa.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/_lwp_create.2
diff -u src/lib/libc/sys/_lwp_create.2:1.7 src/lib/libc/sys/_lwp_create.2:1.8
--- src/lib/libc/sys/_lwp_create.2:1.7 Sun Apr 23 11:38:53 2017
+++ src/lib/libc/sys/_lwp_create.2 Sat Jul 31 20:51:32 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: _lwp_create.2,v 1.7 2017/04/23 11:38:53 wiz Exp $
+.\" $NetBSD: _lwp_create.2,v 1.8 2021/07/31 20:51:32 andvar Exp $
.\"
.\" Copyright (c) 2003 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -50,7 +50,7 @@ signal mask, stack, and machine register
The signal stack of the newly created light-weight process is reset to
disabled.
If this context specifies invalid register values (for example priviledge
-escalation by setting machine dependend bits forbidden for user processes),
+escalation by setting machine dependent bits forbidden for user processes),
or does not specify cpu register values (uc_flags does not have the
_UC_CPU bit set), the call will fail and errno will be set to EINVAL.
.Pp
Index: src/lib/libedit/tty.h
diff -u src/lib/libedit/tty.h:1.23 src/lib/libedit/tty.h:1.24
--- src/lib/libedit/tty.h:1.23 Sun Dec 2 16:58:13 2018
+++ src/lib/libedit/tty.h Sat Jul 31 20:51:32 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: tty.h,v 1.23 2018/12/02 16:58:13 christos Exp $ */
+/* $NetBSD: tty.h,v 1.24 2021/07/31 20:51:32 andvar Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -432,7 +432,7 @@
#define C_SH(A) ((unsigned int)(1 << (A)))
/*
- * Terminal dependend data structures
+ * Terminal dependent data structures
*/
#define EX_IO 0 /* while we are executing */
#define ED_IO 1 /* while we are editing */
Index: src/sys/arch/atari/pci/pci_vga.c
diff -u src/sys/arch/atari/pci/pci_vga.c:1.17 src/sys/arch/atari/pci/pci_vga.c:1.18
--- src/sys/arch/atari/pci/pci_vga.c:1.17 Sat May 4 09:03:08 2019
+++ src/sys/arch/atari/pci/pci_vga.c Sat Jul 31 20:51:32 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_vga.c,v 1.17 2019/05/04 09:03:08 tsutsui Exp $ */
+/* $NetBSD: pci_vga.c,v 1.18 2021/07/31 20:51:32 andvar Exp $ */
/*
* Copyright (c) 1999 Leo Weppelman. All rights reserved.
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_vga.c,v 1.17 2019/05/04 09:03:08 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_vga.c,v 1.18 2021/07/31 20:51:32 andvar Exp $");
#include <sys/param.h>
#include <sys/queue.h>
@@ -139,7 +139,7 @@ check_for_vga(bus_space_tag_t iot, bus_s
switch (id = PCI_PRODUCT(id)) {
/*
- * XXX Make the inclusion of the cases dependend
+ * XXX Make the inclusion of the cases dependent
* on config options!
*/
case PCI_PRODUCT_TSENG_ET6000:
Index: src/sys/arch/hpcmips/include/sysconf.h
diff -u src/sys/arch/hpcmips/include/sysconf.h:1.17 src/sys/arch/hpcmips/include/sysconf.h:1.18
--- src/sys/arch/hpcmips/include/sysconf.h:1.17 Wed Mar 16 14:43:36 2011
+++ src/sys/arch/hpcmips/include/sysconf.h Sat Jul 31 20:51:32 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: sysconf.h,v 1.17 2011/03/16 14:43:36 tsutsui Exp $ */
+/* $NetBSD: sysconf.h,v 1.18 2021/07/31 20:51:32 andvar Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@@ -55,7 +55,7 @@ struct clock_ymdhms;
extern struct platform {
/*
* cpu_intr - interrupt handler
- * cpu_idle - CPU dependend idle routine.
+ * cpu_idle - CPU dependent idle routine.
* cons_init - console initialization
* fb_init - frame buffer initialization
* mem_init - Count available memory
Index: src/sys/dev/hpc/hpcfbio.h
diff -u src/sys/dev/hpc/hpcfbio.h:1.2 src/sys/dev/hpc/hpcfbio.h:1.3
--- src/sys/dev/hpc/hpcfbio.h:1.2 Sun Jul 22 09:56:41 2001
+++ src/sys/dev/hpc/hpcfbio.h Sat Jul 31 20:51:32 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: hpcfbio.h,v 1.2 2001/07/22 09:56:41 takemura Exp $ */
+/* $NetBSD: hpcfbio.h,v 1.3 2021/07/31 20:51:32 andvar Exp $ */
/*-
* Copyright (c) 1999
@@ -135,7 +135,7 @@ struct hpcfb_fbconf {
u_long hf_reserved[3];
/*
- * class dependend data
+ * class dependent data
*/
short hf_class_data_length;
union {
Index: src/sys/dev/isa/tcic2_isa.c
diff -u src/sys/dev/isa/tcic2_isa.c:1.28 src/sys/dev/isa/tcic2_isa.c:1.29
--- src/sys/dev/isa/tcic2_isa.c:1.28 Tue Nov 12 13:17:44 2019
+++ src/sys/dev/isa/tcic2_isa.c Sat Jul 31 20:51:32 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: tcic2_isa.c,v 1.28 2019/11/12 13:17:44 msaitoh Exp $ */
+/* $NetBSD: tcic2_isa.c,v 1.29 2021/07/31 20:51:32 andvar Exp $ */
/*
*
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcic2_isa.c,v 1.28 2019/11/12 13:17:44 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcic2_isa.c,v 1.29 2021/07/31 20:51:32 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -254,7 +254,7 @@ tcic_isa_attach(device_t parent, device_
sc->memh = memh;
/*
- * determine chip type and initialise some chip type dependend
+ * determine chip type and initialise some chip type dependent
* parameters in softc.
*/
sc->chipid = tcic_chipid(iot, ioh);