#include <db.h>int txn_commit(DB_TXN *tid);
The txn_commit function ends the transaction specified by the tid argument.
If DB_TXN_NOSYNC was not specified, a commit log record is written and flushed to disk, as are all previously written log records.
If the transaction is nested, its locks are acquired by the parent transaction, otherwise its locks are released. Note: nested transactions are not yet supported.
Any applications that require strict two-phase locking must not release any locks explicitly, leaving them all to be released by txn_commit.
The txn_commit function returns the value of errno on failure, and 0 on success.
The txn_commit function may fail and return errno for any of the errors specified for the following Berkeley DB and C library functions: abort(3), fcntl(3), fflush(3), fprintf(3), free(3), getpid(3), lock_vec, log_put, malloc(3), memcpy(3), memset(3), strerror(3), vfprintf(3), and vsnprintf(3).
In addition, the txn_commit function may fail and return errno for the following conditions: