Esempio n. 1
0
func (txn *Txn) Abort() {
	if txn._txn != nil {
		C.mdb_txn_abort(txn._txn)
		runtime.UnlockOSThread()
		txn._txn = nil
	}
}
Esempio n. 2
0
func (txn *Txn) Abort() {
	if txn.txn == nil {
		return
	}
	C.mdb_txn_abort(txn.txn)
	// The transaction handle is always freed.
	txn.txn = nil
}
Esempio n. 3
0
func (txn *Txn) Abort() {
	if txn._txn == nil {
		return
	}
	C.mdb_txn_abort(txn._txn)
	runtime.UnlockOSThread()
	// The transaction handle is always freed.
	txn._txn = nil
}
Esempio n. 4
0
File: txn.go Progetto: Crest/gomdb
func (txn *Txn) Abort() {
	C.mdb_txn_abort(txn._txn)
	txn._txn = nil
}