summaryrefslogtreecommitdiffstats
path: root/source/tdb
Commit message (Collapse)AuthorAgeFilesLines
...
* - optimise tdb_store() a littleAndrew Tridgell2000-01-021-7/+15
| | | | - prevent a free of an unallocated pointer
* a useful locking tester - it uses lots of simultaneous writersAndrew Tridgell1999-12-241-0/+117
|
* fixed more locking bugs - all seems OK nowAndrew Tridgell1999-12-242-42/+67
|
* fixed locking codeAndrew Tridgell1999-12-232-70/+195
|
* fixed a bug in the handling of tdb version number upgradeAndrew Tridgell1999-12-221-0/+3
|
* added some paranoia codeAndrew Tridgell1999-12-221-41/+46
|
* expanded the tdb documentationAndrew Tridgell1999-12-211-0/+110
|
* converted all our existing shared memory code to use a tdb databaseAndrew Tridgell1999-12-211-31/+34
| | | | | | | | | | | | | instead of either sysv or mmap shared memory or lock files. this means we can now completely remove locking_shm.c locking_slow.c shmem.c shmem_sysv.c and lots of other things also got simpler locking.c got a bit larger, but is much better compartmentalised now
* first cut at using the tdb code for the connections structure, theAndrew Tridgell1999-12-213-5/+44
| | | | | SWAT status page and smbstatus. It made the code _much_ simpler, I wish we'd done a database module a long time ago!
* first pass at the database code for Samba. This also includes a testAndrew Tridgell1999-12-215-0/+1518
suite and a very simple tool for manuipulating the databases. the main code is in tdb/tdb.c and includes both mmap and file based IO. All databases auto-expand and allow multiple simultaneous writers. the next step is using this new capability in lots of places in Samba where we have existing ad-hoc databases