Module Name: src
Committed By: wiz
Date: Fri Sep 20 12:20:02 UTC 2013
Modified Files:
src/sys/sys: sysctl.h
Log Message:
Fix typos in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/sys/sys/sysctl.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/sysctl.h
diff -u src/sys/sys/sysctl.h:1.208 src/sys/sys/sysctl.h:1.209
--- src/sys/sys/sysctl.h:1.208 Thu Aug 1 01:16:34 2013
+++ src/sys/sys/sysctl.h Fri Sep 20 12:20:01 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: sysctl.h,v 1.208 2013/08/01 01:16:34 matt Exp $ */
+/* $NetBSD: sysctl.h,v 1.209 2013/09/20 12:20:01 wiz Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -227,7 +227,7 @@ struct ctlname {
#define KERN_ROOT_DEVICE 30 /* string: root device */
#define KERN_MSGBUFSIZE 31 /* int: max # of chars in msg buffer */
#define KERN_FSYNC 32 /* int: file synchronization support */
-#define KERN_OLDSYSVMSG 33 /* old: SysV message queue suppoprt */
+#define KERN_OLDSYSVMSG 33 /* old: SysV message queue support */
#define KERN_OLDSYSVSEM 34 /* old: SysV semaphore support */
#define KERN_OLDSYSVSHM 35 /* old: SysV shared memory support */
#define KERN_OLDSHORTCORENAME 36 /* old, unimplemented */
@@ -240,7 +240,7 @@ struct ctlname {
#define KERN_MEMORY_PROTECTION 43 /* int: POSIX memory protections */
#define KERN_LOGIN_NAME_MAX 44 /* int: max length login name + NUL */
#define KERN_DEFCORENAME 45 /* old: sort core name format */
-#define KERN_LOGSIGEXIT 46 /* int: log signalled processes */
+#define KERN_LOGSIGEXIT 46 /* int: log signaled processes */
#define KERN_PROC2 47 /* struct: process entries */
#define KERN_PROC_ARGS 48 /* struct: process argv/env */
#define KERN_FSCALE 49 /* int: fixpt FSCALE */
@@ -599,7 +599,7 @@ struct kinfo_proc2 {
};
/*
- * Compat flags for kinfo_proc, kinfo_proc2. Not guarenteed to be stable.
+ * Compat flags for kinfo_proc, kinfo_proc2. Not guaranteed to be stable.
* Some of them used to be shared with LWP flags.
* XXXAD Trim to the minimum necessary...
*/
@@ -685,7 +685,7 @@ struct kinfo_lwp {
* KERN_SYSVIPC subtypes
*/
#define KERN_SYSVIPC_INFO 1 /* struct: number of valid kern ids */
-#define KERN_SYSVIPC_MSG 2 /* int: SysV message queue suppoprt */
+#define KERN_SYSVIPC_MSG 2 /* int: SysV message queue support */
#define KERN_SYSVIPC_SEM 3 /* int: SysV semaphore support */
#define KERN_SYSVIPC_SHM 4 /* int: SysV shared memory support */
#define KERN_SYSVIPC_SHMMAX 5 /* int: max shared memory segment size (bytes) */
@@ -700,7 +700,7 @@ struct kinfo_lwp {
/* KERN_SYSVIPC_OMSG_INFO 1 */
/* KERN_SYSVIPC_OSEM_INFO 2 */
/* KERN_SYSVIPC_OSHM_INFO 3 */
-#define KERN_SYSVIPC_MSG_INFO 4 /* msginfo and msqid_ds */
+#define KERN_SYSVIPC_MSG_INFO 4 /* msginfo and msgid_ds */
#define KERN_SYSVIPC_SEM_INFO 5 /* seminfo and semid_ds */
#define KERN_SYSVIPC_SHM_INFO 6 /* shminfo and shmid_ds */
@@ -1058,7 +1058,7 @@ struct sysctllog;
* variable. The loader prevents multiple use by issuing errors
* if a variable is initialized in more than one place. They are
* aggregated into an array in debug_sysctl(), so that it can
- * conveniently locate them when querried. If more debugging
+ * conveniently locate them when queried. If more debugging
* variables are added, they must also be declared here and also
* entered into the array.
*