s/the the/the/
This commit is contained in:
parent
16f3281f94
commit
124961627e
|
@ -5,7 +5,7 @@ changed/added by this patch are:
|
|||
README.586
|
||||
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
|
||||
there is no real way to work around without rewriting the basic
|
||||
algorithm. The speedup on average is around 5-10% (which is generally
|
||||
|
|
|
@ -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.
|
||||
.\"
|
||||
|
@ -210,7 +210,7 @@ One option is to make the descriptors non-blocking before adding them.
|
|||
.It rfb
|
||||
Read a frame from the file descriptor onto the specified buffer.
|
||||
.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
|
||||
Identify if a buffer is the response to the specified buffer.
|
||||
.It gotfb
|
||||
|
|
|
@ -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 $
|
||||
.\"
|
||||
|
@ -224,7 +224,7 @@ option is given.
|
|||
This option enables the transformation of Uniform Resource Locators of
|
||||
the form
|
||||
.Em /~user/
|
||||
into the the directory
|
||||
into the directory
|
||||
.Pa ~user/public_html
|
||||
(but see the
|
||||
.Fl p
|
||||
|
|
|
@ -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
|
||||
|
@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993\
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)init.c 8.2 (Berkeley) 4/28/95";
|
||||
#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 /* not lint */
|
||||
|
||||
|
@ -1138,7 +1138,7 @@ read_ttys(void)
|
|||
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) {
|
||||
struct timeval down_time;
|
||||
|
|
|
@ -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.
|
||||
.\" 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
|
||||
journal size of 64MB.
|
||||
.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
|
||||
specified with
|
||||
.Xr tunefs 8
|
||||
|
|
|
@ -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.
|
||||
.\" All rights reserved.
|
||||
|
@ -27,7 +27,7 @@
|
|||
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
.\" POSSIBILITY OF SUCH DAMAGE.
|
||||
.\"
|
||||
.Dd March 23, 2009
|
||||
.Dd November 22, 2009
|
||||
.Dt MUTEX 9
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
@ -208,7 +208,7 @@ Returns non-zero if the mutex was acquired, or zero if the mutex was
|
|||
already held.
|
||||
.Pp
|
||||
.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
|
||||
.Dv first_lock
|
||||
must be acquired before
|
||||
|
|
|
@ -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.
|
||||
.\" All rights reserved.
|
||||
|
@ -27,7 +27,7 @@
|
|||
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
.\" POSSIBILITY OF SUCH DAMAGE.
|
||||
.\"
|
||||
.Dd March 23, 2009
|
||||
.Dd November 22, 2009
|
||||
.Dt RWLOCK 9
|
||||
.Os
|
||||
.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
|
||||
consumers.
|
||||
.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.
|
||||
.Sh OPTIONS AND MACROS
|
||||
.Bl -tag -width abcd
|
||||
|
|
|
@ -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 $ */
|
||||
|
||||
/*
|
||||
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#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
|
||||
#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
|
||||
* 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.
|
||||
*/
|
||||
static int
|
||||
|
|
|
@ -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.
|
||||
|
@ -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.
|
||||
*/
|
||||
static inline sleepq_t *
|
||||
|
|
|
@ -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
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
#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 */
|
||||
|
||||
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.
|
||||
*/
|
||||
if (in_ca)
|
||||
|
|
Loading…
Reference in New Issue