66215 | 21-Feb-1994 |
bostic |
cast alloc's to shut SunOS up |
66193 | 21-Feb-1994 |
bostic |
first pass at making DB use basic integral types (the Alpha port) |
65725 | 13-Jan-1994 |
bostic |
Fixes a small memory leak (476 bytes) in libc's database subsystem. From: Christopher Jon Kane <kane@kidd.vet.purdue.edu> |
64708 | 12-Oct-1993 |
bostic |
hash can actually read version 1 as well as version 2, the on-disk format didn't change |
64481 | 11-Sep-1993 |
bostic |
ndbm will pass none of the (future) DB flags |
64466 | 07-Sep-1993 |
bostic |
add DB_ flags to __hash_open() USE_OPEN_FLAGS work done in dbopen(), no longer needed here |
64465 | 07-Sep-1993 |
bostic |
add DB_ flags to __hash_open() |
64445 | 06-Sep-1993 |
bostic |
always pass the appropriate overflow page address needed to handle the case where the last page in the chain is the last page of an overflow pair; from Margo Seltzer |
63747 | 09-Jul-1993 |
bostic |
don't increment/change a void *, cast to char * (thanks GCC!) |
62489 | 06-Jun-1993 |
bostic |
4.4BSD snapshot (revision 8.1); add 1993 to copyright |
62488 | 06-Jun-1993 |
bostic |
When bumping splitpoint, begin overflow page number offset at 1 not 0 |
62487 | 06-Jun-1993 |
bostic |
hash_realloc should zero out the newly allocated memory, not beyond the end of the old memory. |
62486 | 06-Jun-1993 |
bostic |
The short at page[2] contains the flag value that identifies long keys, long data or overflow pages, not page[1]. |
61202 | 04-Jun-1993 |
bostic |
4.4BSD snapshot (revision 8.1); add 1993 to copyright |
61201 | 04-Jun-1993 |
bostic |
4.4BSD snapshot (revision 8.1); add 1993 to copyright |
61200 | 04-Jun-1993 |
bostic |
4.4BSD snapshot (revision 8.1) |
61199 | 04-Jun-1993 |
bostic |
4.4BSD snapshot (revision 8.1) |
60356 | 25-May-1993 |
bostic |
put SCCS keywords back in |
60247 | 23-May-1993 |
bostic |
Add fd interface routine to return file descriptor. Pass file name to init_htab so that if no page size is specified, the page size will default to the block size of the file system. Initialize f
Add fd interface routine to return file descriptor. Pass file name to init_htab so that if no page size is specified, the page size will default to the block size of the file system. Initialize fill factor so that it will dynamically be set during operation.
show more ...
|
60246 | 23-May-1993 |
bostic |
Dynamically compute fill factor (if not user specified). When first overflow page is allocated, set fill factor to the number of entries on overflowing page. Verify that new fill factor is at lea
Dynamically compute fill factor (if not user specified). When first overflow page is allocated, set fill factor to the number of entries on overflowing page. Verify that new fill factor is at least MIN_FFACTOR.
show more ...
|
60245 | 23-May-1993 |
bostic |
Change default page size to 4K and fill factor to 40. |
60244 | 23-May-1993 |
bostic |
Use 4K page default. Use dynamically computed fill factor default instead of fixed value. |
60060 | 16-May-1993 |
bostic |
add a flags argument to the sync call |
58127 | 21-Feb-1993 |
ralph |
fix prototype declaration for swap_header(). |
58016 | 16-Feb-1993 |
bostic |
bcmp/bcopy/bzero -> memcmp/memmove/memset |