summaryrefslogtreecommitdiff
path: root/lib/tdb/tdb.exports
AgeCommit message (Collapse)AuthorFilesLines
2010-04-20tdb: update tdb ABI to use hide_symbols=TrueAndrew Tridgell1-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>
2010-03-26tdb: update exports and signatures filesSimo Sorce1-0/+1
2009-10-22lib/tdb: add tdb_check()Rusty Russell1-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>
2009-06-15Add exports file and abi checker for tdbSimo Sorce1-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