From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Wed, 25 Apr 2012 13:20:16 +0000 (+0200) Subject: Split notmuch_database_close into two functions X-Git-Tag: 0.13_rc1~64 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=7864350c938944276c1a378539da7670c211b9b5;hp=7864350c938944276c1a378539da7670c211b9b5;p=notmuch Split notmuch_database_close into two functions Formerly notmuch_database_close closed the xapian database and destroyed the talloc structure associated with the notmuch database object. Split notmuch_database_close into notmuch_database_close and notmuch_database_destroy. This makes it possible for long running programs to close the xapian database and thus release the lock associated with it without destroying the data structures obtained from it. This also makes the api more consistent since every other data structure has a destructor function. The comments in notmuch.h are a courtesy of Austin Clements. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> ---