summaryrefslogtreecommitdiffstats
path: root/lib/tdb/tdb.exports
Commit message (Collapse)AuthorAgeFilesLines
* tdb: Remove autotools support.Jelmer Vernooij2010-12-241-65/+0
|
* tdb: Revert re-addition of tdb_set_logging_function.Jelmer Vernooij2010-10-231-1/+0
| | | | | | | | I accidentally committed this patch which we carry in the Debian packages. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Oct 23 18:37:16 UTC 2010 on sn-devel-104
* Lowercase socket_wrapper name.Jelmer Vernooij2010-10-211-0/+1
| | | | | | | Avoid linking against socket_wrapper outside of developer mode. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Thu Oct 21 20:26:11 UTC 2010 on sn-devel-104
* tdb: update tdb ABI to use hide_symbols=TrueAndrew Tridgell2010-04-201-1/+0
| | | | | | | | | | | | | | We now use -fvisibilty=hidden to hide symbols from outside the tdb shared library. This also moved tdb_transaction_recover() into the tdb_private.h header, as it should never have been a public API. For that reason we are changing the version number. We're only doing a minor version increment as it is extremely unlikely that anyone was actually using tdb_transaction_recover() as its locking requirements were rather unusual. Pair-Programmed-With: Rusty Russell <rusty@samba.org>
* tdb: update exports and signatures filesSimo Sorce2010-03-261-0/+1
|
* lib/tdb: add tdb_check()Rusty Russell2009-10-221-0/+1
| | | | | | | | ctdb wants a quick way to detect corrupt tdbs; particularly, tdbs with loops in their hash chains. tdb_check() provides this. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* Add exports file and abi checker for tdbSimo Sorce2009-06-151-0/+64
This is a first attempt at exporting symbols only for public functions We also provide a rudimentary ABI checker that tries to check that function signatures are not changed by mistake. Given our use of macros this is not an API checker. It's all based on tdb.h contents and the gcc -aux-info option