document defaults for cachesize, psize
[unix-history] / usr / src / lib / libc / db / recno /
1993-05-31 Keith Bosticgive up on the EFBIG test
1993-05-25 Keith Bosticadd __rec_fd, to return a file descriptor
1993-05-17 Keith Bosticpass psize down to the btree routines
1993-05-17 Keith Bosticsync now takes a flags argument
1993-05-17 Keith Bosticunderlying btree is always O_RDWR, recno may be O_RDONLY
1993-05-17 Keith Bosticbreak BTF flags up into btree/recno (B_, R_) categories
1993-05-17 Keith Bosticbreak modify into two parts, recno file modify and...
1993-05-17 Keith Bosticbreak BTF flags up into btree/recno (B_, R_) categories
1993-05-17 Keith Bosticsync now takes a flags argument
1993-05-11 Keith Bosticdelete R_CURSORLOG from the interface (and the code)
1993-05-08 Keith Bosticavoid zero-length record at EOF
1993-05-07 Keith Bosticanother shot at fixing the SIZE_T_MAX test
1993-03-26 Keith Bosticget file descriptor close logic right
1993-03-24 Ralph Campbellinitialize uninitialized fields in btopeninfo. minor...
1993-03-20 Keith Bosticguarantee that bt_rfd gets set; pipes are read-only...
1993-03-20 Keith Bosticadd BTF_EOF flag, test it instead of bt_reof
1993-03-20 Keith Bosticadd BTF_EOF to test instead of bt_reof
1993-03-20 Keith Bosticuse munmap to free up the mapped memory
1993-03-20 Keith Bosticadd BTF_EOF flag to test instead of bt_reof int
1993-03-01 Keith Bosticcast the SIZE_T_MAX, so compilers don't get upset
1993-02-21 Keith Bosticsz is not the total size of the buffer, it's the remain...
1993-02-17 Keith Bosticbcmp/bcopy/bzero -> memcmp/memmove/memset
1993-02-15 Keith Bosticindex_t -> indx_t
1993-02-12 Keith Bosticstrings.h -> string.h
1993-02-12 Keith Bosticmove db.h to the end of the includes, make compat.h...
1993-01-11 Keith Bosticfix includes for portability
1993-01-11 Keith Bosticclear the stack in the search routine; it's a lot simpler
1992-12-20 Keith Bosticread slowly if can't mmap the file
1992-12-05 Keith Bosticinitialize cursor so that first R_CURSORLOG works
1992-12-05 Keith Bosticcopy the length of the data, not the length of the...
1992-12-05 Keith Bosticit's an insertion if R_IAFTER or R_IBEFORE are set...
1992-11-14 Keith Bosticreturn the keys as well as the data
1992-11-14 Keith Bosticreturn RET_SPECIAL if R_PREV and at record 1; check...
1992-11-14 Keith Bosticprettiness police
1992-11-14 Keith Bostickey can be set by put, now, so no longer const *; chang...
1992-11-14 Keith Bosticadd in-memory versions of recno trees, lint fixes
1992-11-14 Keith Bostictest for initialization of the cursor before deleting...
1992-11-14 Keith Bosticcheck for in memory tree
1992-11-14 Keith Bosticcheck for in memory recno tree; __rec_ret takes new...
1992-11-14 Keith Bostic__rec_put can fill in the key, so it's no longer a...
1992-11-08 Keith Bosticonly permit O_RDONLY or O_RDWR, not O_WRONLY
1992-11-08 Keith Bosticcheck RDONLY bit on sync, before close
1992-08-27 Keith Bosticnrec is 0-based, here, so > recno, not >= recno, also...
1992-08-27 Keith Bosticusing the wrong variable to count when entering empty...
1992-07-18 Keith Bosticlint
1992-07-18 Keith Bostickey gets filled in by seq call, should point at something
1992-07-18 Keith Bosticlseek takes an off_t, not a long
1992-07-17 Keith Bosticdon't test rec_len field if flag bit not set
1992-07-16 Keith Bosticmmap returns -1 on error
1992-06-25 Keith Bosticuse constant SIZE_T_MAX instead of knowing what size...
1992-06-24 Keith Bosticsecond arg to mmap is a size_t, MAP_FILE disappears
1992-06-24 Keith Bosticmake eof flag part of each BT struct; test for sb.st_si...
1992-06-24 Keith Bosticincrement necessary dsize by 1 so that we don't crash...
1992-06-24 Keith Bostic__bt_push index was off-by-one
1992-06-24 Keith Bosticmake CURSOR of recno 0 do the right thing; copy the...
1992-06-24 Keith Bosticmake R_IAFTER of recno 0 work
1992-06-24 Keith Bosticdecrement record count in rec_dleaf, where the delete...
1992-06-24 Keith Bosticclose the underlying file descriptor
1992-06-24 Keith Bosticexact is meaningless for recno; make eof flag part...
1991-09-12 Keith Bosticdate and time created 91/09/11 16:29:28 by bostic
1991-09-12 Keith Bosticuse intermediate on realloc so can recover from failure
1991-09-12 Keith Bosticdrop exact flag (always exact if found at all); increme...
1991-09-12 Keith Bosticredo cursor implementation, __rec_search interface
1991-09-12 Keith Bosticcheck user flags; minor error changes
1991-09-12 Keith Bosticcheck user flags; redo cursor implementation; recno...
1991-09-12 Keith Bosticredo cursor deletion; specify delete to __rec_search...
1991-09-12 Keith Bostictruncate when finished writing the file
1991-09-12 Keith Bostictake const for key argument; specify SEARCH to __rec_search
1991-09-12 Keith Bosticadd __rec_dleaf; __rec_get takes const key; __rec_searc...
1991-09-12 Keith Bosticdate and time created 91/09/11 16:17:35 by bostic
1991-09-05 Keith BosticRev #2. Redo the btree code add recno's and checkpoint