s/the the/the/

This commit is contained in:
mbalmer 2009-11-22 18:40:26 +00:00
parent 16f3281f94
commit 124961627e
10 changed files with 24 additions and 24 deletions

View File

@ -5,7 +5,7 @@ changed/added by this patch are:
README.586 README.586
match.S match.S
The effectiveness of these modifications is a bit marginal, as the the The effectiveness of these modifications is a bit marginal, as the
program's bottleneck seems to be mostly L1-cache contention, for which program's bottleneck seems to be mostly L1-cache contention, for which
there is no real way to work around without rewriting the basic there is no real way to work around without rewriting the basic
algorithm. The speedup on average is around 5-10% (which is generally algorithm. The speedup on average is around 5-10% (which is generally

View File

@ -1,4 +1,4 @@
.\" $NetBSD: puffs_framebuf.3,v 1.26 2009/02/20 14:26:56 pooka Exp $ .\" $NetBSD: puffs_framebuf.3,v 1.27 2009/11/22 18:40:26 mbalmer Exp $
.\" .\"
.\" Copyright (c) 2007 Antti Kantee. All rights reserved. .\" Copyright (c) 2007 Antti Kantee. All rights reserved.
.\" .\"
@ -210,7 +210,7 @@ One option is to make the descriptors non-blocking before adding them.
.It rfb .It rfb
Read a frame from the file descriptor onto the specified buffer. Read a frame from the file descriptor onto the specified buffer.
.It wfb .It wfb
Write a frame from the the specified buffer into the file descriptor. Write a frame from the specified buffer into the file descriptor.
.It cmpfb .It cmpfb
Identify if a buffer is the response to the specified buffer. Identify if a buffer is the response to the specified buffer.
.It gotfb .It gotfb

View File

@ -1,4 +1,4 @@
.\" $NetBSD: bozohttpd.8,v 1.15 2009/05/23 20:26:18 wiz Exp $ .\" $NetBSD: bozohttpd.8,v 1.16 2009/11/22 18:40:26 mbalmer Exp $
.\" .\"
.\" $eterna: bozohttpd.8,v 1.91 2009/05/23 00:55:22 mrg Exp $ .\" $eterna: bozohttpd.8,v 1.91 2009/05/23 00:55:22 mrg Exp $
.\" .\"
@ -224,7 +224,7 @@ option is given.
This option enables the transformation of Uniform Resource Locators of This option enables the transformation of Uniform Resource Locators of
the form the form
.Em /~user/ .Em /~user/
into the the directory into the directory
.Pa ~user/public_html .Pa ~user/public_html
(but see the (but see the
.Fl p .Fl p

View File

@ -1,4 +1,4 @@
/* $NetBSD: init.c,v 1.98 2009/04/12 09:31:32 apb Exp $ */ /* $NetBSD: init.c,v 1.99 2009/11/22 18:40:26 mbalmer Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993\
#if 0 #if 0
static char sccsid[] = "@(#)init.c 8.2 (Berkeley) 4/28/95"; static char sccsid[] = "@(#)init.c 8.2 (Berkeley) 4/28/95";
#else #else
__RCSID("$NetBSD: init.c,v 1.98 2009/04/12 09:31:32 apb Exp $"); __RCSID("$NetBSD: init.c,v 1.99 2009/11/22 18:40:26 mbalmer Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -1138,7 +1138,7 @@ read_ttys(void)
make_utmpx("", BOOT_MSG, BOOT_TIME, 0, &boot_time, 0); make_utmpx("", BOOT_MSG, BOOT_TIME, 0, &boot_time, 0);
/* /*
* If wtmpx is not empty, pick the the down time from there * If wtmpx is not empty, pick the down time from there
*/ */
if (stat(_PATH_WTMPX, &st) != -1 && st.st_size != 0) { if (stat(_PATH_WTMPX, &st) != -1 && st.st_size != 0) {
struct timeval down_time; struct timeval down_time;

View File

@ -1,4 +1,4 @@
.\" $NetBSD: wapbl.4,v 1.10 2009/11/22 00:02:56 christos Exp $ .\" $NetBSD: wapbl.4,v 1.11 2009/11/22 18:40:26 mbalmer Exp $
.\" .\"
.\" Copyright (c) 2008, 2009 The NetBSD Foundation, Inc. .\" Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -64,7 +64,7 @@ then the size of the journal
will be based on 1MB of journal per 1GB of file system, to a maximum will be based on 1MB of journal per 1GB of file system, to a maximum
journal size of 64MB. journal size of 64MB.
.Pp .Pp
If there is adequate space between the end of the the file system and If there is adequate space between the end of the file system and
the end of the partition, then unless the journal size has been the end of the partition, then unless the journal size has been
specified with specified with
.Xr tunefs 8 .Xr tunefs 8

View File

@ -1,4 +1,4 @@
.\" $NetBSD: mutex.9,v 1.19 2009/05/18 14:02:51 wiz Exp $ .\" $NetBSD: mutex.9,v 1.20 2009/11/22 18:40:26 mbalmer Exp $
.\" .\"
.\" Copyright (c) 2007, 2009 The NetBSD Foundation, Inc. .\" Copyright (c) 2007, 2009 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE. .\" POSSIBILITY OF SUCH DAMAGE.
.\" .\"
.Dd March 23, 2009 .Dd November 22, 2009
.Dt MUTEX 9 .Dt MUTEX 9
.Os .Os
.Sh NAME .Sh NAME
@ -208,7 +208,7 @@ Returns non-zero if the mutex was acquired, or zero if the mutex was
already held. already held.
.Pp .Pp
.Fn mutex_tryenter .Fn mutex_tryenter
can be used as an optimization when acquiring locks in the the wrong order. can be used as an optimization when acquiring locks in the wrong order.
For example, in a setting where the convention is that For example, in a setting where the convention is that
.Dv first_lock .Dv first_lock
must be acquired before must be acquired before

View File

@ -1,4 +1,4 @@
.\" $NetBSD: rwlock.9,v 1.13 2009/03/23 22:22:40 wiz Exp $ .\" $NetBSD: rwlock.9,v 1.14 2009/11/22 18:40:26 mbalmer Exp $
.\" .\"
.\" Copyright (c) 2006, 2007, 2009 The NetBSD Foundation, Inc. .\" Copyright (c) 2006, 2007, 2009 The NetBSD Foundation, Inc.
.\" All rights reserved. .\" All rights reserved.
@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE. .\" POSSIBILITY OF SUCH DAMAGE.
.\" .\"
.Dd March 23, 2009 .Dd November 22, 2009
.Dt RWLOCK 9 .Dt RWLOCK 9
.Os .Os
.Sh NAME .Sh NAME
@ -96,7 +96,7 @@ type provides storage for the RW lock object.
This should be treated as an opaque object and not examined directly by This should be treated as an opaque object and not examined directly by
consumers. consumers.
.Pp .Pp
Note that the these interfaces must not be used from a hardware Note that these interfaces must not be used from a hardware
interrupt handler. interrupt handler.
.Sh OPTIONS AND MACROS .Sh OPTIONS AND MACROS
.Bl -tag -width abcd .Bl -tag -width abcd

View File

@ -1,4 +1,4 @@
/* $NetBSD: altq_cbq.c,v 1.25 2008/06/18 09:06:27 yamt Exp $ */ /* $NetBSD: altq_cbq.c,v 1.26 2009/11/22 18:40:26 mbalmer Exp $ */
/* $KAME: altq_cbq.c,v 1.21 2005/04/13 03:44:24 suz Exp $ */ /* $KAME: altq_cbq.c,v 1.21 2005/04/13 03:44:24 suz Exp $ */
/* /*
@ -32,7 +32,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: altq_cbq.c,v 1.25 2008/06/18 09:06:27 yamt Exp $"); __KERNEL_RCSID(0, "$NetBSD: altq_cbq.c,v 1.26 2009/11/22 18:40:26 mbalmer Exp $");
#ifdef _KERNEL_OPT #ifdef _KERNEL_OPT
#include "opt_altq.h" #include "opt_altq.h"
@ -696,7 +696,7 @@ cbq_modify_class(struct cbq_modify_class *acp)
* *
* This function create a new traffic class in the CBQ class hierarchy of * This function create a new traffic class in the CBQ class hierarchy of
* given paramters. The class that created is either the root, default, * given paramters. The class that created is either the root, default,
* or a new dynamic class. If CBQ is not initilaized, the the root class * or a new dynamic class. If CBQ is not initilaized, the root class
* will be created. * will be created.
*/ */
static int static int

View File

@ -1,4 +1,4 @@
/* $NetBSD: sleepq.h,v 1.17 2009/10/21 21:12:07 rmind Exp $ */ /* $NetBSD: sleepq.h,v 1.18 2009/11/22 18:40:26 mbalmer Exp $ */
/*- /*-
* Copyright (c) 2002, 2006, 2007, 2008, 2009 The NetBSD Foundation, Inc. * Copyright (c) 2002, 2006, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@ -89,7 +89,7 @@ sleepq_dontsleep(lwp_t *l)
} }
/* /*
* Find the correct sleep queue for the the specified wait channel. This * Find the correct sleep queue for the specified wait channel. This
* acquires and holds the per-queue interlock. * acquires and holds the per-queue interlock.
*/ */
static inline sleepq_t * static inline sleepq_t *

View File

@ -1,4 +1,4 @@
/* $NetBSD: cd9660_write.c,v 1.10 2009/01/10 22:06:29 bjh21 Exp $ */ /* $NetBSD: cd9660_write.c,v 1.11 2009/11/22 18:40:27 mbalmer Exp $ */
/* /*
* Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan * Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
@ -37,7 +37,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#if defined(__RCSID) && !defined(__lint) #if defined(__RCSID) && !defined(__lint)
__RCSID("$NetBSD: cd9660_write.c,v 1.10 2009/01/10 22:06:29 bjh21 Exp $"); __RCSID("$NetBSD: cd9660_write.c,v 1.11 2009/11/22 18:40:27 mbalmer Exp $");
#endif /* !__lint */ #endif /* !__lint */
static int cd9660_write_volume_descriptors(FILE *); static int cd9660_write_volume_descriptors(FILE *);
@ -502,7 +502,7 @@ cd9660_write_rr(FILE *fd, cd9660node *writenode, int offset, int sector)
} }
/* /*
* If we had to go the the continuation area, head back to * If we had to go the continuation area, head back to
* where we should be. * where we should be.
*/ */
if (in_ca) if (in_ca)