Fix typos in comment from FreeMiNT's db1 patches.
This commit is contained in:
parent
0407419f7c
commit
361c4e8675
3 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bt_seq.c,v 1.1 2008/10/10 00:21:43 joerg Exp $ */
|
||||
/* $NetBSD: bt_seq.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $ */
|
||||
/* NetBSD: bt_seq.c,v 1.17 2008/09/11 12:58:00 joerg Exp */
|
||||
|
||||
/*-
|
||||
|
@ -36,7 +36,7 @@
|
|||
#include <nbcompat.h>
|
||||
#include <nbcompat/cdefs.h>
|
||||
|
||||
__RCSID("$NetBSD: bt_seq.c,v 1.1 2008/10/10 00:21:43 joerg Exp $");
|
||||
__RCSID("$NetBSD: bt_seq.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
|
@ -90,7 +90,7 @@ __bt_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
|
|||
}
|
||||
|
||||
/*
|
||||
* If scan unitialized as yet, or starting at a specific record, set
|
||||
* If scan uninitialized as yet, or starting at a specific record, set
|
||||
* the scan to a specific key. Both __bt_seqset and __bt_seqadv pin
|
||||
* the page the cursor references if they're successful.
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bt_utils.c,v 1.1 2008/10/10 00:21:43 joerg Exp $ */
|
||||
/* $NetBSD: bt_utils.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $ */
|
||||
/* NetBSD: bt_utils.c,v 1.13 2008/09/10 17:52:35 joerg Exp */
|
||||
|
||||
/*-
|
||||
|
@ -36,7 +36,7 @@
|
|||
#include <nbcompat.h>
|
||||
#include <nbcompat/cdefs.h>
|
||||
|
||||
__RCSID("$NetBSD: bt_utils.c,v 1.1 2008/10/10 00:21:43 joerg Exp $");
|
||||
__RCSID("$NetBSD: bt_utils.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
|
||||
|
@ -73,7 +73,7 @@ __bt_ret(BTREE *t, EPG *e, DBT *key, DBT *rkey, DBT *data, DBT *rdata, int copy)
|
|||
bl = GETBLEAF(e->page, e->index);
|
||||
|
||||
/*
|
||||
* We must copy big keys/data to make them contigous. Otherwise,
|
||||
* We must copy big keys/data to make them contiguous. Otherwise,
|
||||
* leave the page pinned and don't copy unless the user specified
|
||||
* concurrent access.
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: btree.h,v 1.3 2008/10/28 15:06:26 joerg Exp $ */
|
||||
/* $NetBSD: btree.h,v 1.4 2013/09/08 12:02:03 ryoon Exp $ */
|
||||
/* NetBSD: btree.h,v 1.16 2008/08/26 21:18:38 joerg Exp */
|
||||
|
||||
/*-
|
||||
|
@ -186,7 +186,7 @@ typedef struct _rinternal {
|
|||
#define NRINTERNAL \
|
||||
BTLALIGN(sizeof(recno_t) + sizeof(pgno_t))
|
||||
|
||||
/* Copy a RINTERAL entry to the page. */
|
||||
/* Copy a RINTERNAL entry to the page. */
|
||||
#define WR_RINTERNAL(p, nrecs, pgno) do { \
|
||||
*(recno_t *)(void *)p = nrecs; \
|
||||
p += sizeof(recno_t); \
|
||||
|
|
Loading…
Reference in a new issue